Skip to content

Commit 8f48849

Browse files
committed
Merge remote-tracking branch 'origin/master' into master
2 parents 6e70201 + bae9efb commit 8f48849

File tree

4 files changed

+43
-24
lines changed

4 files changed

+43
-24
lines changed

.github/FUNDING.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# These are supported funding model platforms
2+
3+
github: [softvar] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: softvar # Replace with a single Patreon username
5+
open_collective: softvar # Replace with a single Open Collective username
6+
custom: ['https://paypal.me/softvar'] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $ npm install secure-ls
3131

3232
Eg: `55e8f5585789191d350329b9ebcf2b11` and `db51d35aad96610683d5a40a70b20c39`.
3333

34-
For the genration of such strings, `secretPhrase` is being used and can be found in code easily but that won't make it unsecure, `PBKDF2`'s layer on top of that will handle security.
34+
For the generation of such strings, `secretPhrase` is being used and can be found in code easily but that won't make it unsecure, `PBKDF2`'s layer on top of that will handle security.
3535

3636
* **Compresion / Decompression** using [lz-string](https://github.com/pieroxy/lz-string)
3737

dist/secure-ls.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ declare class SecureLS {
4242
declare namespace SecureLS{
4343
interface Base64 {
4444
_keyStr: string;
45-
encode(e: string);
46-
decode(e: string);
45+
encode(e: string): string;
46+
decode(e: string): string;
4747
}
4848
interface Storage {
4949
readonly length: number;

yarn.lock

Lines changed: 34 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ async-each@^1.0.0:
194194
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
195195
integrity sha1-GdOGodntxufByF04iu28xW0zYC0=
196196

197-
async@1.x, async@^1.3.0, async@^1.4.0:
197+
async@1.x, async@^1.3.0:
198198
version "1.5.2"
199199
resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
200200
integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=
@@ -907,6 +907,11 @@ commander@^2.5.0, commander@^2.9.0:
907907
resolved "https://registry.yarnpkg.com/commander/-/commander-2.16.0.tgz#f16390593996ceb4f3eeb020b31d78528f7f8a50"
908908
integrity sha512-sVXqklSaotK9at437sFlFpyOcJonxe0yST/AG9DkQKUdIE6IqGIMv4SfAQSKaJbSdVEJYItASCrBiVQHq1HQew==
909909

910+
commander@~2.20.0:
911+
version "2.20.0"
912+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
913+
integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==
914+
910915
commoner@~0.10.0:
911916
version "0.10.8"
912917
resolved "https://registry.yarnpkg.com/commoner/-/commoner-0.10.8.tgz#34fc3672cd24393e8bb47e70caa0293811f4f2c5"
@@ -1673,15 +1678,15 @@ growl@1.8.1:
16731678
integrity sha1-Sy3sjZB+k9szZiTc7AGDUC+MlCg=
16741679

16751680
handlebars@^4.0.0, handlebars@^4.0.3:
1676-
version "4.0.11"
1677-
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.11.tgz#630a35dfe0294bc281edae6ffc5d329fc7982dcc"
1678-
integrity sha1-Ywo13+ApS8KB7a5v/F0yn8eYLcw=
1681+
version "4.1.2"
1682+
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.2.tgz#b6b37c1ced0306b221e094fc7aca3ec23b131b67"
1683+
integrity sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==
16791684
dependencies:
1680-
async "^1.4.0"
1685+
neo-async "^2.6.0"
16811686
optimist "^0.6.1"
1682-
source-map "^0.4.4"
1687+
source-map "^0.6.1"
16831688
optionalDependencies:
1684-
uglify-js "^2.6"
1689+
uglify-js "^3.1.4"
16851690

16861691
har-validator@~2.0.6:
16871692
version "2.0.6"
@@ -2680,6 +2685,11 @@ needle@^2.2.1:
26802685
iconv-lite "^0.4.4"
26812686
sax "^1.2.4"
26822687

2688+
neo-async@^2.6.0:
2689+
version "2.6.1"
2690+
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
2691+
integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==
2692+
26832693
next-tick@1:
26842694
version "1.0.0"
26852695
resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c"
@@ -3338,18 +3348,23 @@ source-map@0.1.32:
33383348
dependencies:
33393349
amdefine ">=0.0.4"
33403350

3341-
source-map@^0.4.4, source-map@~0.4.1:
3351+
source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.0, source-map@~0.5.1:
3352+
version "0.5.7"
3353+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
3354+
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
3355+
3356+
source-map@^0.6.1, source-map@~0.6.1:
3357+
version "0.6.1"
3358+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
3359+
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
3360+
3361+
source-map@~0.4.1:
33423362
version "0.4.4"
33433363
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
33443364
integrity sha1-66T12pwNyZneaAMti092FzZSA2s=
33453365
dependencies:
33463366
amdefine ">=0.0.4"
33473367

3348-
source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.0, source-map@~0.5.1:
3349-
version "0.5.7"
3350-
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
3351-
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
3352-
33533368
sprintf-js@~1.0.2:
33543369
version "1.0.3"
33553370
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
@@ -3589,15 +3604,13 @@ typedarray@^0.0.6:
35893604
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
35903605
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
35913606

3592-
uglify-js@^2.6:
3593-
version "2.8.29"
3594-
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd"
3595-
integrity sha1-KcVzMUgFe7Th913zW3qcty5qWd0=
3607+
uglify-js@^3.1.4:
3608+
version "3.6.0"
3609+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.0.tgz#704681345c53a8b2079fb6cec294b05ead242ff5"
3610+
integrity sha512-W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg==
35963611
dependencies:
3597-
source-map "~0.5.1"
3598-
yargs "~3.10.0"
3599-
optionalDependencies:
3600-
uglify-to-browserify "~1.0.0"
3612+
commander "~2.20.0"
3613+
source-map "~0.6.1"
36013614

36023615
uglify-js@~2.6.0:
36033616
version "2.6.4"

0 commit comments

Comments
 (0)