@design-edito/tools 0.3.5 → 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agnostic/arrays/index.d.ts +6 -0
- package/agnostic/arrays/index.js +1 -1
- package/agnostic/booleans/index.d.ts +1 -0
- package/agnostic/colors/index.d.ts +12 -0
- package/agnostic/css/index.d.ts +5 -0
- package/agnostic/css/index.js +1 -1
- package/agnostic/errors/index.d.ts +2 -0
- package/agnostic/errors/index.js +1 -1
- package/agnostic/html/hyper-json/smart-tags/coalesced/index.d.ts +52 -0
- package/agnostic/html/hyper-json/smart-tags/coalesced/index.js +18 -18
- package/agnostic/html/hyper-json/smart-tags/isolated/index.d.ts +14 -0
- package/agnostic/html/hyper-json/smart-tags/isolated/index.js +4 -4
- package/agnostic/html/index.d.ts +8 -0
- package/agnostic/html/index.js +2 -2
- package/agnostic/index.d.ts +16 -0
- package/agnostic/index.js +4 -4
- package/agnostic/misc/crossenv/index.d.ts +2 -0
- package/agnostic/misc/crossenv/index.js +1 -1
- package/agnostic/misc/index.d.ts +12 -0
- package/agnostic/misc/index.js +2 -2
- package/agnostic/misc/logs/index.d.ts +3 -0
- package/agnostic/numbers/index.d.ts +6 -0
- package/agnostic/numbers/index.js +2 -2
- package/agnostic/objects/enums/index.d.ts +1 -0
- package/agnostic/objects/index.d.ts +8 -0
- package/agnostic/objects/index.js +1 -1
- package/agnostic/optim/index.d.ts +2 -0
- package/agnostic/random/index.d.ts +3 -0
- package/agnostic/random/index.js +1 -1
- package/agnostic/sanitization/index.d.ts +4 -0
- package/agnostic/strings/index.d.ts +7 -0
- package/agnostic/strings/index.js +3 -3
- package/agnostic/time/dates/index.d.ts +1 -0
- package/agnostic/time/index.d.ts +5 -0
- package/agnostic/typescript/index.d.ts +1 -0
- package/components/index.d.ts +1 -0
- package/index.d.ts +3 -0
- package/index.js +3 -0
- package/node/@aws-s3/index.d.ts +1 -0
- package/node/@aws-s3/storage/directory/index.d.ts +4 -0
- package/node/@aws-s3/storage/file/index.d.ts +7 -0
- package/node/@aws-s3/storage/file/index.js +1 -1
- package/node/@aws-s3/storage/index.d.ts +2 -0
- package/node/@express/index.d.ts +1 -0
- package/node/@google-cloud/index.d.ts +1 -0
- package/node/@google-cloud/storage/bucket/index.d.ts +1 -0
- package/node/@google-cloud/storage/directory/index.d.ts +4 -0
- package/node/@google-cloud/storage/directory/index.js +1 -1
- package/node/@google-cloud/storage/file/index.d.ts +12 -0
- package/node/@google-cloud/storage/file/index.js +1 -1
- package/node/@google-cloud/storage/index.d.ts +3 -0
- package/node/@google-cloud/storage/index.js +1 -1
- package/node/cloud-storage/index.d.ts +2 -0
- package/node/cloud-storage/index.js +1 -1
- package/node/cloud-storage/operations/index.d.ts +11 -0
- package/node/cloud-storage/operations/index.js +2 -2
- package/node/encryption/@aes-256-gcm/index.d.ts +2 -0
- package/node/encryption/index.d.ts +2 -0
- package/node/files/index.d.ts +3 -0
- package/node/files/index.js +1 -1
- package/node/ftps/directory/index.d.ts +4 -0
- package/node/ftps/directory/index.js +1 -1
- package/node/ftps/file/index.d.ts +7 -0
- package/node/ftps/file/index.js +1 -1
- package/node/ftps/index.d.ts +2 -0
- package/node/images/index.d.ts +5 -0
- package/node/images/transform/operations/index.d.ts +15 -0
- package/node/images/transform/operations/index.js +2 -2
- package/node/index.d.ts +11 -0
- package/node/index.js +4 -4
- package/node/process/index.d.ts +3 -0
- package/node/sftp/directory/index.d.ts +4 -0
- package/node/sftp/file/index.d.ts +7 -0
- package/node/sftp/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * as findDuplicates from './find-duplicates/index.js'
|
|
2
|
+
export * as dedupe from './dedupe/index.js'
|
|
3
|
+
export * as isArrayOf from './is-array-of/index.js'
|
|
4
|
+
export * as make from './make/index.js'
|
|
5
|
+
export * as randomPick from './random-pick/index.js'
|
|
6
|
+
export * as shuffle from './shuffle/index.js'
|
package/agnostic/arrays/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * as dedupe from './dedupe/index.js'
|
|
2
1
|
export * as findDuplicates from './find-duplicates/index.js'
|
|
2
|
+
export * as dedupe from './dedupe/index.js'
|
|
3
3
|
export * as isArrayOf from './is-array-of/index.js'
|
|
4
4
|
export * as make from './make/index.js'
|
|
5
5
|
export * as randomPick from './random-pick/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as isFalsy from './is-falsy/index.js'
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * as channels from './channels/index.js'
|
|
2
|
+
export * as contrast from './contrast/index.js'
|
|
3
|
+
export * as convert from './convert/index.js'
|
|
4
|
+
export * as distance from './distance/index.js'
|
|
5
|
+
export * as grayscale from './grayscale/index.js'
|
|
6
|
+
export * as invert from './invert/index.js'
|
|
7
|
+
export * as lerp from './lerp/index.js'
|
|
8
|
+
export * as luminance from './luminance/index.js'
|
|
9
|
+
export * as palette from './palette/index.js'
|
|
10
|
+
export * as rotate from './rotate/index.js'
|
|
11
|
+
export * as tidy from './tidy/index.js'
|
|
12
|
+
export * as typechecks from './typechecks/index.js'
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * as bem from './bem/index.js'
|
|
2
|
+
export * as generateNiceColor from './generate-nice-color/index.js'
|
|
3
|
+
export * as isValidCssClassName from './is-valid-css-class-name/index.js'
|
|
4
|
+
export * as stylesSet from './styles-set/index.js'
|
|
5
|
+
export * as scale from './scale/index.js'
|
package/agnostic/css/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * as bem from './bem/index.js'
|
|
2
2
|
export * as generateNiceColor from './generate-nice-color/index.js'
|
|
3
|
-
export * as scale from './scale/index.js'
|
|
4
3
|
export * as isValidCssClassName from './is-valid-css-class-name/index.js'
|
|
5
4
|
export * as stylesSet from './styles-set/index.js'
|
|
5
|
+
export * as scale from './scale/index.js'
|
package/agnostic/errors/index.js
CHANGED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export * as add from './add/index.js'
|
|
2
|
+
export * as and from './and/index.js'
|
|
3
|
+
export * as append from './append/index.js'
|
|
4
|
+
export * as at from './at/index.js'
|
|
5
|
+
export * as addclass from './addclass/index.js'
|
|
6
|
+
export * as call from './call/index.js'
|
|
7
|
+
export * as deleteproperties from './deleteproperties/index.js'
|
|
8
|
+
export * as clone from './clone/index.js'
|
|
9
|
+
export * as getproperties from './getproperties/index.js'
|
|
10
|
+
export * as getattribute from './getattribute/index.js'
|
|
11
|
+
export * as equals from './equals/index.js'
|
|
12
|
+
export * as hjparse from './hjparse/index.js'
|
|
13
|
+
export * as getproperty from './getproperty/index.js'
|
|
14
|
+
export * as if from './if/index.js'
|
|
15
|
+
export * as initialize from './initialize/index.js'
|
|
16
|
+
export * as hjstringify from './hjstringify/index.js'
|
|
17
|
+
export * as join from './join/index.js'
|
|
18
|
+
export * as length from './length/index.js'
|
|
19
|
+
export * as negate from './negate/index.js'
|
|
20
|
+
export * as map from './map/index.js'
|
|
21
|
+
export * as notrailing from './notrailing/index.js'
|
|
22
|
+
export * as pickrandom from './pickrandom/index.js'
|
|
23
|
+
export * as populate from './populate/index.js'
|
|
24
|
+
export * as push from './push/index.js'
|
|
25
|
+
export * as or from './or/index.js'
|
|
26
|
+
export * as print from './print/index.js'
|
|
27
|
+
export * as recordtoarray from './recordtoarray/index.js'
|
|
28
|
+
export * as removeattribute from './removeattribute/index.js'
|
|
29
|
+
export * as removeclass from './removeclass/index.js'
|
|
30
|
+
export * as renameproperty from './renameproperty/index.js'
|
|
31
|
+
export * as replace from './replace/index.js'
|
|
32
|
+
export * as pusheach from './pusheach/index.js'
|
|
33
|
+
export * as setattribute from './setattribute/index.js'
|
|
34
|
+
export * as setproperty from './setproperty/index.js'
|
|
35
|
+
export * as set from './set/index.js'
|
|
36
|
+
export * as select from './select/index.js'
|
|
37
|
+
export * as sorton from './sorton/index.js'
|
|
38
|
+
export * as spread from './spread/index.js'
|
|
39
|
+
export * as toboolean from './toboolean/index.js'
|
|
40
|
+
export * as toelement from './toelement/index.js'
|
|
41
|
+
export * as toarray from './toarray/index.js'
|
|
42
|
+
export * as toggleclass from './toggleclass/index.js'
|
|
43
|
+
export * as tonodelist from './tonodelist/index.js'
|
|
44
|
+
export * as split from './split/index.js'
|
|
45
|
+
export * as tonull from './tonull/index.js'
|
|
46
|
+
export * as torecord from './torecord/index.js'
|
|
47
|
+
export * as tostring from './tostring/index.js'
|
|
48
|
+
export * as totext from './totext/index.js'
|
|
49
|
+
export * as transformselected from './transformselected/index.js'
|
|
50
|
+
export * as tonumber from './tonumber/index.js'
|
|
51
|
+
export * as trim from './trim/index.js'
|
|
52
|
+
export * as toref from './toref/index.js'
|
|
@@ -1,52 +1,52 @@
|
|
|
1
1
|
export * as add from './add/index.js'
|
|
2
|
-
export * as addclass from './addclass/index.js'
|
|
3
2
|
export * as and from './and/index.js'
|
|
4
3
|
export * as append from './append/index.js'
|
|
5
4
|
export * as at from './at/index.js'
|
|
5
|
+
export * as addclass from './addclass/index.js'
|
|
6
6
|
export * as call from './call/index.js'
|
|
7
|
-
export * as clone from './clone/index.js'
|
|
8
7
|
export * as deleteproperties from './deleteproperties/index.js'
|
|
9
|
-
export * as
|
|
10
|
-
export * as getattribute from './getattribute/index.js'
|
|
8
|
+
export * as clone from './clone/index.js'
|
|
11
9
|
export * as getproperties from './getproperties/index.js'
|
|
12
|
-
export * as
|
|
10
|
+
export * as getattribute from './getattribute/index.js'
|
|
11
|
+
export * as equals from './equals/index.js'
|
|
13
12
|
export * as hjparse from './hjparse/index.js'
|
|
14
|
-
export * as
|
|
13
|
+
export * as getproperty from './getproperty/index.js'
|
|
15
14
|
export * as if from './if/index.js'
|
|
16
15
|
export * as initialize from './initialize/index.js'
|
|
16
|
+
export * as hjstringify from './hjstringify/index.js'
|
|
17
17
|
export * as join from './join/index.js'
|
|
18
18
|
export * as length from './length/index.js'
|
|
19
|
-
export * as map from './map/index.js'
|
|
20
19
|
export * as negate from './negate/index.js'
|
|
20
|
+
export * as map from './map/index.js'
|
|
21
21
|
export * as notrailing from './notrailing/index.js'
|
|
22
|
-
export * as or from './or/index.js'
|
|
23
22
|
export * as pickrandom from './pickrandom/index.js'
|
|
24
23
|
export * as populate from './populate/index.js'
|
|
25
|
-
export * as print from './print/index.js'
|
|
26
24
|
export * as push from './push/index.js'
|
|
27
|
-
export * as
|
|
25
|
+
export * as or from './or/index.js'
|
|
26
|
+
export * as print from './print/index.js'
|
|
28
27
|
export * as recordtoarray from './recordtoarray/index.js'
|
|
29
28
|
export * as removeattribute from './removeattribute/index.js'
|
|
30
29
|
export * as removeclass from './removeclass/index.js'
|
|
31
30
|
export * as renameproperty from './renameproperty/index.js'
|
|
32
31
|
export * as replace from './replace/index.js'
|
|
33
|
-
export * as
|
|
34
|
-
export * as set from './set/index.js'
|
|
35
|
-
export * as setproperty from './setproperty/index.js'
|
|
32
|
+
export * as pusheach from './pusheach/index.js'
|
|
36
33
|
export * as setattribute from './setattribute/index.js'
|
|
34
|
+
export * as setproperty from './setproperty/index.js'
|
|
35
|
+
export * as set from './set/index.js'
|
|
36
|
+
export * as select from './select/index.js'
|
|
37
37
|
export * as sorton from './sorton/index.js'
|
|
38
|
-
export * as split from './split/index.js'
|
|
39
38
|
export * as spread from './spread/index.js'
|
|
40
|
-
export * as
|
|
39
|
+
export * as toboolean from './toboolean/index.js'
|
|
41
40
|
export * as toelement from './toelement/index.js'
|
|
41
|
+
export * as toarray from './toarray/index.js'
|
|
42
42
|
export * as toggleclass from './toggleclass/index.js'
|
|
43
43
|
export * as tonodelist from './tonodelist/index.js'
|
|
44
|
+
export * as split from './split/index.js'
|
|
44
45
|
export * as tonull from './tonull/index.js'
|
|
45
|
-
export * as tonumber from './tonumber/index.js'
|
|
46
46
|
export * as torecord from './torecord/index.js'
|
|
47
|
-
export * as toref from './toref/index.js'
|
|
48
47
|
export * as tostring from './tostring/index.js'
|
|
49
48
|
export * as totext from './totext/index.js'
|
|
50
|
-
export * as toboolean from './toboolean/index.js'
|
|
51
49
|
export * as transformselected from './transformselected/index.js'
|
|
50
|
+
export * as tonumber from './tonumber/index.js'
|
|
52
51
|
export * as trim from './trim/index.js'
|
|
52
|
+
export * as toref from './toref/index.js'
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * as any from './any/index.js'
|
|
2
|
+
export * as array from './array/index.js'
|
|
3
|
+
export * as element from './element/index.js'
|
|
4
|
+
export * as global from './global/index.js'
|
|
5
|
+
export * as boolean from './boolean/index.js'
|
|
6
|
+
export * as nodelist from './nodelist/index.js'
|
|
7
|
+
export * as get from './get/index.js'
|
|
8
|
+
export * as guess from './guess/index.js'
|
|
9
|
+
export * as number from './number/index.js'
|
|
10
|
+
export * as record from './record/index.js'
|
|
11
|
+
export * as null from './null/index.js'
|
|
12
|
+
export * as ref from './ref/index.js'
|
|
13
|
+
export * as string from './string/index.js'
|
|
14
|
+
export * as text from './text/index.js'
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
export * as any from './any/index.js'
|
|
2
2
|
export * as array from './array/index.js'
|
|
3
|
-
export * as boolean from './boolean/index.js'
|
|
4
3
|
export * as element from './element/index.js'
|
|
5
|
-
export * as get from './get/index.js'
|
|
6
4
|
export * as global from './global/index.js'
|
|
7
|
-
export * as
|
|
5
|
+
export * as boolean from './boolean/index.js'
|
|
8
6
|
export * as nodelist from './nodelist/index.js'
|
|
9
|
-
export * as
|
|
7
|
+
export * as get from './get/index.js'
|
|
8
|
+
export * as guess from './guess/index.js'
|
|
10
9
|
export * as number from './number/index.js'
|
|
11
10
|
export * as record from './record/index.js'
|
|
11
|
+
export * as null from './null/index.js'
|
|
12
12
|
export * as ref from './ref/index.js'
|
|
13
13
|
export * as string from './string/index.js'
|
|
14
14
|
export * as text from './text/index.js'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * as getNodeAncestors from './get-node-ancestors/index.js'
|
|
2
|
+
export * as getPositionInsideParent from './get-position-inside-parent/index.js'
|
|
3
|
+
export * as hyperJson from './hyper-json/index.js'
|
|
4
|
+
export * as insertNode from './insert-node/index.js'
|
|
5
|
+
export * as replaceInElement from './replace-in-element/index.js'
|
|
6
|
+
export * as selectorToElement from './selector-to-element/index.js'
|
|
7
|
+
export * as placeholders from './placeholders/index.js'
|
|
8
|
+
export * as stringToNodes from './string-to-nodes/index.js'
|
package/agnostic/html/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
export * as getNodeAncestors from './get-node-ancestors/index.js'
|
|
1
2
|
export * as getPositionInsideParent from './get-position-inside-parent/index.js'
|
|
2
3
|
export * as hyperJson from './hyper-json/index.js'
|
|
3
4
|
export * as insertNode from './insert-node/index.js'
|
|
4
|
-
export * as placeholders from './placeholders/index.js'
|
|
5
5
|
export * as replaceInElement from './replace-in-element/index.js'
|
|
6
6
|
export * as selectorToElement from './selector-to-element/index.js'
|
|
7
|
-
export * as
|
|
7
|
+
export * as placeholders from './placeholders/index.js'
|
|
8
8
|
export * as stringToNodes from './string-to-nodes/index.js'
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export * as booleans from './booleans/index.js'
|
|
2
|
+
export * as arrays from './arrays/index.js'
|
|
3
|
+
export * as colors from './colors/index.js'
|
|
4
|
+
export * as css from './css/index.js'
|
|
5
|
+
export * as errors from './errors/index.js'
|
|
6
|
+
export * as html from './html/index.js'
|
|
7
|
+
export * as misc from './misc/index.js'
|
|
8
|
+
export * as numbers from './numbers/index.js'
|
|
9
|
+
export * as objects from './objects/index.js'
|
|
10
|
+
export * as regexps from './regexps/index.js'
|
|
11
|
+
export * as sanitization from './sanitization/index.js'
|
|
12
|
+
export * as strings from './strings/index.js'
|
|
13
|
+
export * as time from './time/index.js'
|
|
14
|
+
export * as typescript from './typescript/index.js'
|
|
15
|
+
export * as random from './random/index.js'
|
|
16
|
+
export * as optim from './optim/index.js'
|
package/agnostic/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export * as arrays from './arrays/index.js'
|
|
2
1
|
export * as booleans from './booleans/index.js'
|
|
2
|
+
export * as arrays from './arrays/index.js'
|
|
3
3
|
export * as colors from './colors/index.js'
|
|
4
4
|
export * as css from './css/index.js'
|
|
5
|
-
export * as html from './html/index.js'
|
|
6
5
|
export * as errors from './errors/index.js'
|
|
6
|
+
export * as html from './html/index.js'
|
|
7
7
|
export * as misc from './misc/index.js'
|
|
8
8
|
export * as numbers from './numbers/index.js'
|
|
9
9
|
export * as objects from './objects/index.js'
|
|
10
|
-
export * as optim from './optim/index.js'
|
|
11
|
-
export * as random from './random/index.js'
|
|
12
10
|
export * as regexps from './regexps/index.js'
|
|
13
11
|
export * as sanitization from './sanitization/index.js'
|
|
14
12
|
export * as strings from './strings/index.js'
|
|
15
13
|
export * as time from './time/index.js'
|
|
16
14
|
export * as typescript from './typescript/index.js'
|
|
15
|
+
export * as random from './random/index.js'
|
|
16
|
+
export * as optim from './optim/index.js'
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * as cast from './cast/index.js'
|
|
2
|
+
export * as assert from './assert/index.js'
|
|
3
|
+
export * as connection from './connection/index.js'
|
|
4
|
+
export * as crawler from './crawler/index.js'
|
|
5
|
+
export * as crossenv from './crossenv/index.js'
|
|
6
|
+
export * as dataSize from './data-size/index.js'
|
|
7
|
+
export * as isConstructorFunction from './is-constructor-function/index.js'
|
|
8
|
+
export * as isNullish from './is-nullish/index.js'
|
|
9
|
+
export * as logs from './logs/index.js'
|
|
10
|
+
export * as loremIpsum from './lorem-ipsum/index.js'
|
|
11
|
+
export * as normalizeExtension from './normalize-extension/index.js'
|
|
12
|
+
export * as outcome from './outcome/index.js'
|
package/agnostic/misc/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
export * as cast from './cast/index.js'
|
|
1
2
|
export * as assert from './assert/index.js'
|
|
2
3
|
export * as connection from './connection/index.js'
|
|
3
|
-
export * as cast from './cast/index.js'
|
|
4
4
|
export * as crawler from './crawler/index.js'
|
|
5
5
|
export * as crossenv from './crossenv/index.js'
|
|
6
6
|
export * as dataSize from './data-size/index.js'
|
|
7
7
|
export * as isConstructorFunction from './is-constructor-function/index.js'
|
|
8
8
|
export * as isNullish from './is-nullish/index.js'
|
|
9
9
|
export * as logs from './logs/index.js'
|
|
10
|
-
export * as normalizeExtension from './normalize-extension/index.js'
|
|
11
10
|
export * as loremIpsum from './lorem-ipsum/index.js'
|
|
11
|
+
export * as normalizeExtension from './normalize-extension/index.js'
|
|
12
12
|
export * as outcome from './outcome/index.js'
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * as absoluteModulo from './absolute-modulo/index.js'
|
|
2
|
+
export * as approximateRational from './approximate-rational/index.js'
|
|
3
|
+
export * as clamp from './clamp/index.js'
|
|
4
|
+
export * as round from './round/index.js'
|
|
5
|
+
export * as geometricProgressions from './geometric-progressions/index.js'
|
|
6
|
+
export * as interpolate from './interpolate/index.js'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * as approximateRational from './approximate-rational/index.js'
|
|
2
1
|
export * as absoluteModulo from './absolute-modulo/index.js'
|
|
2
|
+
export * as approximateRational from './approximate-rational/index.js'
|
|
3
3
|
export * as clamp from './clamp/index.js'
|
|
4
|
+
export * as round from './round/index.js'
|
|
4
5
|
export * as geometricProgressions from './geometric-progressions/index.js'
|
|
5
6
|
export * as interpolate from './interpolate/index.js'
|
|
6
|
-
export * as round from './round/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as isInEnum from './is-in-enum/index.js'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * as deepGetProperty from './deep-get-property/index.js'
|
|
2
|
+
export * as enums from './enums/index.js'
|
|
3
|
+
export * as isObject from './is-object/index.js'
|
|
4
|
+
export * as isRecord from './is-record/index.js'
|
|
5
|
+
export * as flattenGetters from './flatten-getters/index.js'
|
|
6
|
+
export * as recordFormat from './record-format/index.js'
|
|
7
|
+
export * as recordMap from './record-map/index.js'
|
|
8
|
+
export * as validation from './validation/index.js'
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export * as deepGetProperty from './deep-get-property/index.js'
|
|
2
2
|
export * as enums from './enums/index.js'
|
|
3
|
-
export * as flattenGetters from './flatten-getters/index.js'
|
|
4
3
|
export * as isObject from './is-object/index.js'
|
|
5
4
|
export * as isRecord from './is-record/index.js'
|
|
5
|
+
export * as flattenGetters from './flatten-getters/index.js'
|
|
6
6
|
export * as recordFormat from './record-format/index.js'
|
|
7
7
|
export * as recordMap from './record-map/index.js'
|
|
8
8
|
export * as validation from './validation/index.js'
|
package/agnostic/random/index.js
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * as charCodes from './char-codes/index.js'
|
|
2
|
+
export * as matches from './matches/index.js'
|
|
3
|
+
export * as parseTable from './parse-table/index.js'
|
|
4
|
+
export * as toAlphanum from './to-alphanum/index.js'
|
|
5
|
+
export * as replaceAll from './replace-all/index.js'
|
|
6
|
+
export * as normalizeIndent from './normalize-indent/index.js'
|
|
7
|
+
export * as trim from './trim/index.js'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export * as matches from './matches/index.js'
|
|
2
|
-
export * as normalizeIndent from './normalize-indent/index.js'
|
|
3
1
|
export * as charCodes from './char-codes/index.js'
|
|
2
|
+
export * as matches from './matches/index.js'
|
|
4
3
|
export * as parseTable from './parse-table/index.js'
|
|
4
|
+
export * as toAlphanum from './to-alphanum/index.js'
|
|
5
5
|
export * as replaceAll from './replace-all/index.js'
|
|
6
|
+
export * as normalizeIndent from './normalize-indent/index.js'
|
|
6
7
|
export * as trim from './trim/index.js'
|
|
7
|
-
export * as toAlphanum from './to-alphanum/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as formatDate from './format-date/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as comp from './Comp/index.js'
|
package/index.d.ts
ADDED
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as storage from './storage/index.js'
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * as copy from './copy/index.js'
|
|
2
|
+
export * as download from './download/index.js'
|
|
3
|
+
export * as move from './move/index.js'
|
|
4
|
+
export * as exists from './exists/index.js'
|
|
5
|
+
export * as remove from './remove/index.js'
|
|
6
|
+
export * as stat from './stat/index.js'
|
|
7
|
+
export * as upload from './upload/index.js'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * as copy from './copy/index.js'
|
|
2
2
|
export * as download from './download/index.js'
|
|
3
|
-
export * as exists from './exists/index.js'
|
|
4
3
|
export * as move from './move/index.js'
|
|
4
|
+
export * as exists from './exists/index.js'
|
|
5
5
|
export * as remove from './remove/index.js'
|
|
6
6
|
export * as stat from './stat/index.js'
|
|
7
7
|
export * as upload from './upload/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as multer from './@multer/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as storage from './storage/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as getMetadata from './get-metadata/index.js'
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * as copy from './copy/index.js'
|
|
2
|
+
export * as download from './download/index.js'
|
|
3
|
+
export * as exists from './exists/index.js'
|
|
4
|
+
export * as generateSignedUrl from './generate-signed-url/index.js'
|
|
5
|
+
export * as getMetadata from './get-metadata/index.js'
|
|
6
|
+
export * as getPermissions from './get-permissions/index.js'
|
|
7
|
+
export * as move from './move/index.js'
|
|
8
|
+
export * as remove from './remove/index.js'
|
|
9
|
+
export * as revokeSignedUrls from './revoke-signed-urls/index.js'
|
|
10
|
+
export * as updateMetadata from './update-metadata/index.js'
|
|
11
|
+
export * as upload from './upload/index.js'
|
|
12
|
+
export * as stat from './stat/index.js'
|
|
@@ -7,6 +7,6 @@ export * as getPermissions from './get-permissions/index.js'
|
|
|
7
7
|
export * as move from './move/index.js'
|
|
8
8
|
export * as remove from './remove/index.js'
|
|
9
9
|
export * as revokeSignedUrls from './revoke-signed-urls/index.js'
|
|
10
|
-
export * as stat from './stat/index.js'
|
|
11
10
|
export * as updateMetadata from './update-metadata/index.js'
|
|
12
11
|
export * as upload from './upload/index.js'
|
|
12
|
+
export * as stat from './stat/index.js'
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * as copyDir from './copy-dir/index.js'
|
|
2
|
+
export * as copyFile from './copy-file/index.js'
|
|
3
|
+
export * as downloadFile from './download-file/index.js'
|
|
4
|
+
export * as moveDir from './move-dir/index.js'
|
|
5
|
+
export * as listDir from './list-dir/index.js'
|
|
6
|
+
export * as moveFile from './move-file/index.js'
|
|
7
|
+
export * as removeDir from './remove-dir/index.js'
|
|
8
|
+
export * as removeFile from './remove-file/index.js'
|
|
9
|
+
export * as statFile from './stat-file/index.js'
|
|
10
|
+
export * as uploadFile from './upload-file/index.js'
|
|
11
|
+
export * as existsFile from './exists-file/index.js'
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export * as copyDir from './copy-dir/index.js'
|
|
2
2
|
export * as copyFile from './copy-file/index.js'
|
|
3
3
|
export * as downloadFile from './download-file/index.js'
|
|
4
|
-
export * as existsFile from './exists-file/index.js'
|
|
5
|
-
export * as listDir from './list-dir/index.js'
|
|
6
4
|
export * as moveDir from './move-dir/index.js'
|
|
5
|
+
export * as listDir from './list-dir/index.js'
|
|
7
6
|
export * as moveFile from './move-file/index.js'
|
|
8
7
|
export * as removeDir from './remove-dir/index.js'
|
|
9
8
|
export * as removeFile from './remove-file/index.js'
|
|
10
9
|
export * as statFile from './stat-file/index.js'
|
|
11
10
|
export * as uploadFile from './upload-file/index.js'
|
|
11
|
+
export * as existsFile from './exists-file/index.js'
|
package/node/files/index.js
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * as copy from './copy/index.js'
|
|
2
|
+
export * as download from './download/index.js'
|
|
3
|
+
export * as exists from './exists/index.js'
|
|
4
|
+
export * as move from './move/index.js'
|
|
5
|
+
export * as remove from './remove/index.js'
|
|
6
|
+
export * as stat from './stat/index.js'
|
|
7
|
+
export * as upload from './upload/index.js'
|
package/node/ftps/file/index.js
CHANGED
|
@@ -3,5 +3,5 @@ export * as download from './download/index.js'
|
|
|
3
3
|
export * as exists from './exists/index.js'
|
|
4
4
|
export * as move from './move/index.js'
|
|
5
5
|
export * as remove from './remove/index.js'
|
|
6
|
-
export * as upload from './upload/index.js'
|
|
7
6
|
export * as stat from './stat/index.js'
|
|
7
|
+
export * as upload from './upload/index.js'
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * as blur from './blur/index.js'
|
|
2
|
+
export * as brighten from './brighten/index.js'
|
|
3
|
+
export * as extend from './extend/index.js'
|
|
4
|
+
export * as extract from './extract/index.js'
|
|
5
|
+
export * as flatten from './flatten/index.js'
|
|
6
|
+
export * as flip from './flip/index.js'
|
|
7
|
+
export * as flop from './flop/index.js'
|
|
8
|
+
export * as level from './level/index.js'
|
|
9
|
+
export * as hue from './hue/index.js'
|
|
10
|
+
export * as lighten from './lighten/index.js'
|
|
11
|
+
export * as normalize from './normalize/index.js'
|
|
12
|
+
export * as overlay from './overlay/index.js'
|
|
13
|
+
export * as resize from './resize/index.js'
|
|
14
|
+
export * as rotate from './rotate/index.js'
|
|
15
|
+
export * as saturate from './saturate/index.js'
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export * as blur from './blur/index.js'
|
|
2
|
-
export * as extend from './extend/index.js'
|
|
3
2
|
export * as brighten from './brighten/index.js'
|
|
3
|
+
export * as extend from './extend/index.js'
|
|
4
4
|
export * as extract from './extract/index.js'
|
|
5
5
|
export * as flatten from './flatten/index.js'
|
|
6
6
|
export * as flip from './flip/index.js'
|
|
7
|
-
export * as hue from './hue/index.js'
|
|
8
7
|
export * as flop from './flop/index.js'
|
|
9
8
|
export * as level from './level/index.js'
|
|
9
|
+
export * as hue from './hue/index.js'
|
|
10
10
|
export * as lighten from './lighten/index.js'
|
|
11
11
|
export * as normalize from './normalize/index.js'
|
|
12
12
|
export * as overlay from './overlay/index.js'
|
package/node/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * as awsS3 from './@aws-s3/index.js'
|
|
2
|
+
export * as designEdito from './@design-edito/index.js'
|
|
3
|
+
export * as express from './@express/index.js'
|
|
4
|
+
export * as googleCloud from './@google-cloud/index.js'
|
|
5
|
+
export * as cloudStorage from './cloud-storage/index.js'
|
|
6
|
+
export * as encryption from './encryption/index.js'
|
|
7
|
+
export * as files from './files/index.js'
|
|
8
|
+
export * as ftps from './ftps/index.js'
|
|
9
|
+
export * as images from './images/index.js'
|
|
10
|
+
export * as process from './process/index.js'
|
|
11
|
+
export * as sftp from './sftp/index.js'
|
package/node/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export * as designEdito from './@design-edito/index.js'
|
|
2
1
|
export * as awsS3 from './@aws-s3/index.js'
|
|
3
|
-
export * as
|
|
2
|
+
export * as designEdito from './@design-edito/index.js'
|
|
4
3
|
export * as express from './@express/index.js'
|
|
4
|
+
export * as googleCloud from './@google-cloud/index.js'
|
|
5
|
+
export * as cloudStorage from './cloud-storage/index.js'
|
|
5
6
|
export * as encryption from './encryption/index.js'
|
|
6
7
|
export * as files from './files/index.js'
|
|
7
|
-
export * as googleCloud from './@google-cloud/index.js'
|
|
8
8
|
export * as ftps from './ftps/index.js'
|
|
9
9
|
export * as images from './images/index.js'
|
|
10
|
-
export * as sftp from './sftp/index.js'
|
|
11
10
|
export * as process from './process/index.js'
|
|
11
|
+
export * as sftp from './sftp/index.js'
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * as copy from './copy/index.js'
|
|
2
|
+
export * as download from './download/index.js'
|
|
3
|
+
export * as exists from './exists/index.js'
|
|
4
|
+
export * as move from './move/index.js'
|
|
5
|
+
export * as remove from './remove/index.js'
|
|
6
|
+
export * as stat from './stat/index.js'
|
|
7
|
+
export * as upload from './upload/index.js'
|