@stdlib/strided-base 0.0.7 → 0.2.0
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/LICENSE +0 -304
- package/NOTICE +1 -1
- package/README.md +76 -10
- package/SECURITY.md +5 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +7 -0
- package/docs/types/index.d.ts +668 -84
- package/lib/index.js +76 -0
- package/package.json +141 -113
- package/docs/types/test.ts +0 -29
package/lib/index.js
CHANGED
|
@@ -22,6 +22,10 @@
|
|
|
22
22
|
* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
+
/*
|
|
26
|
+
* The following modules are intentionally not exported: function-object
|
|
27
|
+
*/
|
|
28
|
+
|
|
25
29
|
// MODULES //
|
|
26
30
|
|
|
27
31
|
var setReadOnly = require( '@stdlib/utils-define-read-only-property' );
|
|
@@ -207,6 +211,33 @@ setReadOnly( ns, 'minViewBufferIndex', require( '@stdlib/strided-base-min-view-b
|
|
|
207
211
|
*/
|
|
208
212
|
setReadOnly( ns, 'mskunary', require( '@stdlib/strided-base-mskunary' ) );
|
|
209
213
|
|
|
214
|
+
/**
|
|
215
|
+
* @name mskunaryAddonDispatch
|
|
216
|
+
* @memberof ns
|
|
217
|
+
* @readonly
|
|
218
|
+
* @type {Function}
|
|
219
|
+
* @see {@link module:@stdlib/strided/base/mskunary-addon-dispatch}
|
|
220
|
+
*/
|
|
221
|
+
setReadOnly( ns, 'mskunaryAddonDispatch', require( '@stdlib/strided-base-mskunary-addon-dispatch' ) );
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* @name mskunaryDtypeSignatures
|
|
225
|
+
* @memberof ns
|
|
226
|
+
* @readonly
|
|
227
|
+
* @type {Function}
|
|
228
|
+
* @see {@link module:@stdlib/strided/base/mskunary-dtype-signatures}
|
|
229
|
+
*/
|
|
230
|
+
setReadOnly( ns, 'mskunaryDtypeSignatures', require( '@stdlib/strided-base-mskunary-dtype-signatures' ) );
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* @name mskunarySignatureCallbacks
|
|
234
|
+
* @memberof ns
|
|
235
|
+
* @readonly
|
|
236
|
+
* @type {Function}
|
|
237
|
+
* @see {@link module:@stdlib/strided/base/mskunary-signature-callbacks}
|
|
238
|
+
*/
|
|
239
|
+
setReadOnly( ns, 'mskunarySignatureCallbacks', require( '@stdlib/strided-base-mskunary-signature-callbacks' ) );
|
|
240
|
+
|
|
210
241
|
/**
|
|
211
242
|
* @name nullary
|
|
212
243
|
* @memberof ns
|
|
@@ -216,6 +247,15 @@ setReadOnly( ns, 'mskunary', require( '@stdlib/strided-base-mskunary' ) );
|
|
|
216
247
|
*/
|
|
217
248
|
setReadOnly( ns, 'nullary', require( '@stdlib/strided-base-nullary' ) );
|
|
218
249
|
|
|
250
|
+
/**
|
|
251
|
+
* @name nullaryAddonDispatch
|
|
252
|
+
* @memberof ns
|
|
253
|
+
* @readonly
|
|
254
|
+
* @type {Function}
|
|
255
|
+
* @see {@link module:@stdlib/strided/base/nullary-addon-dispatch}
|
|
256
|
+
*/
|
|
257
|
+
setReadOnly( ns, 'nullaryAddonDispatch', require( '@stdlib/strided-base-nullary-addon-dispatch' ) );
|
|
258
|
+
|
|
219
259
|
/**
|
|
220
260
|
* @name offsetView
|
|
221
261
|
* @memberof ns
|
|
@@ -243,6 +283,15 @@ setReadOnly( ns, 'quaternary', require( '@stdlib/strided-base-quaternary' ) );
|
|
|
243
283
|
*/
|
|
244
284
|
setReadOnly( ns, 'quinary', require( '@stdlib/strided-base-quinary' ) );
|
|
245
285
|
|
|
286
|
+
/**
|
|
287
|
+
* @name reinterpretComplex
|
|
288
|
+
* @memberof ns
|
|
289
|
+
* @readonly
|
|
290
|
+
* @type {Function}
|
|
291
|
+
* @see {@link module:@stdlib/strided/base/reinterpret-complex}
|
|
292
|
+
*/
|
|
293
|
+
setReadOnly( ns, 'reinterpretComplex', require( '@stdlib/strided-base-reinterpret-complex' ) );
|
|
294
|
+
|
|
246
295
|
/**
|
|
247
296
|
* @name reinterpretComplex64
|
|
248
297
|
* @memberof ns
|
|
@@ -324,6 +373,33 @@ setReadOnly( ns, 'unary', require( '@stdlib/strided-base-unary' ) );
|
|
|
324
373
|
*/
|
|
325
374
|
setReadOnly( ns, 'unaryAddonDispatch', require( '@stdlib/strided-base-unary-addon-dispatch' ) );
|
|
326
375
|
|
|
376
|
+
/**
|
|
377
|
+
* @name unaryBy
|
|
378
|
+
* @memberof ns
|
|
379
|
+
* @readonly
|
|
380
|
+
* @type {Function}
|
|
381
|
+
* @see {@link module:@stdlib/strided/base/unary-by}
|
|
382
|
+
*/
|
|
383
|
+
setReadOnly( ns, 'unaryBy', require( '@stdlib/strided-base-unary-by' ) );
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* @name unaryDtypeSignatures
|
|
387
|
+
* @memberof ns
|
|
388
|
+
* @readonly
|
|
389
|
+
* @type {Function}
|
|
390
|
+
* @see {@link module:@stdlib/strided/base/unary-dtype-signatures}
|
|
391
|
+
*/
|
|
392
|
+
setReadOnly( ns, 'unaryDtypeSignatures', require( '@stdlib/strided-base-unary-dtype-signatures' ) );
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* @name unarySignatureCallbacks
|
|
396
|
+
* @memberof ns
|
|
397
|
+
* @readonly
|
|
398
|
+
* @type {Function}
|
|
399
|
+
* @see {@link module:@stdlib/strided/base/unary-signature-callbacks}
|
|
400
|
+
*/
|
|
401
|
+
setReadOnly( ns, 'unarySignatureCallbacks', require( '@stdlib/strided-base-unary-signature-callbacks' ) );
|
|
402
|
+
|
|
327
403
|
/**
|
|
328
404
|
* @name zmap
|
|
329
405
|
* @memberof ns
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/strided-base",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Base strided.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -36,120 +36,148 @@
|
|
|
36
36
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@stdlib/strided-base-binary": "^0.0
|
|
40
|
-
"@stdlib/strided-base-binary-addon-dispatch": "^0.0
|
|
41
|
-
"@stdlib/strided-base-binary-dtype-signatures": "^0.0
|
|
42
|
-
"@stdlib/strided-base-binary-signature-callbacks": "^0.0
|
|
43
|
-
"@stdlib/strided-base-cmap": "^0.0
|
|
44
|
-
"@stdlib/strided-base-dmap": "^0.0
|
|
45
|
-
"@stdlib/strided-base-dmap2": "^0.0
|
|
46
|
-
"@stdlib/strided-base-dmskmap": "^0.0
|
|
47
|
-
"@stdlib/strided-base-dmskmap2": "^0.0
|
|
48
|
-
"@stdlib/strided-base-dtype-enum2str": "^0.0
|
|
49
|
-
"@stdlib/strided-base-dtype-resolve-enum": "^0.0
|
|
50
|
-
"@stdlib/strided-base-dtype-resolve-str": "^0.0
|
|
51
|
-
"@stdlib/strided-base-dtype-str2enum": "^0.0
|
|
52
|
-
"@stdlib/strided-base-map-by": "^0.0
|
|
53
|
-
"@stdlib/strided-base-map-by2": "^0.0
|
|
54
|
-
"@stdlib/strided-base-max-view-buffer-index": "^0.0
|
|
55
|
-
"@stdlib/strided-base-meta-data-props": "^0.0
|
|
56
|
-
"@stdlib/strided-base-min-view-buffer-index": "^0.0
|
|
57
|
-
"@stdlib/strided-base-mskunary": "^0.0
|
|
58
|
-
"@stdlib/strided-base-
|
|
59
|
-
"@stdlib/strided-base-
|
|
60
|
-
"@stdlib/strided-base-
|
|
61
|
-
"@stdlib/strided-base-
|
|
62
|
-
"@stdlib/strided-base-
|
|
63
|
-
"@stdlib/strided-base-
|
|
64
|
-
"@stdlib/strided-base-
|
|
65
|
-
"@stdlib/strided-base-
|
|
66
|
-
"@stdlib/strided-base-
|
|
67
|
-
"@stdlib/strided-base-
|
|
68
|
-
"@stdlib/strided-base-
|
|
69
|
-
"@stdlib/strided-base-
|
|
70
|
-
"@stdlib/strided-base-
|
|
71
|
-
"@stdlib/strided-base-
|
|
72
|
-
"@stdlib/
|
|
39
|
+
"@stdlib/strided-base-binary": "^0.2.0",
|
|
40
|
+
"@stdlib/strided-base-binary-addon-dispatch": "^0.2.0",
|
|
41
|
+
"@stdlib/strided-base-binary-dtype-signatures": "^0.2.0",
|
|
42
|
+
"@stdlib/strided-base-binary-signature-callbacks": "^0.2.0",
|
|
43
|
+
"@stdlib/strided-base-cmap": "^0.2.0",
|
|
44
|
+
"@stdlib/strided-base-dmap": "^0.2.0",
|
|
45
|
+
"@stdlib/strided-base-dmap2": "^0.2.0",
|
|
46
|
+
"@stdlib/strided-base-dmskmap": "^0.2.0",
|
|
47
|
+
"@stdlib/strided-base-dmskmap2": "^0.2.0",
|
|
48
|
+
"@stdlib/strided-base-dtype-enum2str": "^0.2.0",
|
|
49
|
+
"@stdlib/strided-base-dtype-resolve-enum": "^0.2.0",
|
|
50
|
+
"@stdlib/strided-base-dtype-resolve-str": "^0.2.0",
|
|
51
|
+
"@stdlib/strided-base-dtype-str2enum": "^0.2.0",
|
|
52
|
+
"@stdlib/strided-base-map-by": "^0.2.0",
|
|
53
|
+
"@stdlib/strided-base-map-by2": "^0.2.0",
|
|
54
|
+
"@stdlib/strided-base-max-view-buffer-index": "^0.2.0",
|
|
55
|
+
"@stdlib/strided-base-meta-data-props": "^0.2.0",
|
|
56
|
+
"@stdlib/strided-base-min-view-buffer-index": "^0.2.0",
|
|
57
|
+
"@stdlib/strided-base-mskunary": "^0.2.0",
|
|
58
|
+
"@stdlib/strided-base-mskunary-addon-dispatch": "^0.2.0",
|
|
59
|
+
"@stdlib/strided-base-mskunary-dtype-signatures": "^0.2.0",
|
|
60
|
+
"@stdlib/strided-base-mskunary-signature-callbacks": "^0.2.0",
|
|
61
|
+
"@stdlib/strided-base-nullary": "^0.2.0",
|
|
62
|
+
"@stdlib/strided-base-nullary-addon-dispatch": "^0.2.0",
|
|
63
|
+
"@stdlib/strided-base-offset-view": "^0.2.0",
|
|
64
|
+
"@stdlib/strided-base-quaternary": "^0.2.0",
|
|
65
|
+
"@stdlib/strided-base-quinary": "^0.2.0",
|
|
66
|
+
"@stdlib/strided-base-reinterpret-complex": "github:stdlib-js/strided-base-reinterpret-complex#main",
|
|
67
|
+
"@stdlib/strided-base-reinterpret-complex128": "^0.2.0",
|
|
68
|
+
"@stdlib/strided-base-reinterpret-complex64": "^0.2.0",
|
|
69
|
+
"@stdlib/strided-base-smap": "^0.2.0",
|
|
70
|
+
"@stdlib/strided-base-smap2": "^0.2.0",
|
|
71
|
+
"@stdlib/strided-base-smskmap": "^0.2.0",
|
|
72
|
+
"@stdlib/strided-base-smskmap2": "^0.2.0",
|
|
73
|
+
"@stdlib/strided-base-ternary": "^0.2.0",
|
|
74
|
+
"@stdlib/strided-base-unary": "^0.2.0",
|
|
75
|
+
"@stdlib/strided-base-unary-addon-dispatch": "^0.2.0",
|
|
76
|
+
"@stdlib/strided-base-unary-by": "^0.2.0",
|
|
77
|
+
"@stdlib/strided-base-unary-dtype-signatures": "^0.2.0",
|
|
78
|
+
"@stdlib/strided-base-unary-signature-callbacks": "^0.2.0",
|
|
79
|
+
"@stdlib/strided-base-zmap": "^0.2.0",
|
|
80
|
+
"@stdlib/utils-define-read-only-property": "^0.2.0"
|
|
73
81
|
},
|
|
74
82
|
"devDependencies": {
|
|
75
|
-
"@stdlib/array-
|
|
76
|
-
"@stdlib/array-
|
|
77
|
-
"@stdlib/array-
|
|
78
|
-
"@stdlib/array-
|
|
79
|
-
"@stdlib/array-
|
|
80
|
-
"@stdlib/array-
|
|
81
|
-
"@stdlib/array-
|
|
82
|
-
"@stdlib/array-
|
|
83
|
-
"@stdlib/
|
|
84
|
-
"@stdlib/
|
|
85
|
-
"@stdlib/
|
|
86
|
-
"@stdlib/
|
|
87
|
-
"@stdlib/
|
|
88
|
-
"@stdlib/
|
|
89
|
-
"@stdlib/
|
|
90
|
-
"@stdlib/
|
|
91
|
-
"@stdlib/assert-
|
|
92
|
-
"@stdlib/assert-is-
|
|
93
|
-
"@stdlib/assert-is-
|
|
94
|
-
"@stdlib/assert-is-
|
|
95
|
-
"@stdlib/assert-is-
|
|
96
|
-
"@stdlib/assert-is-
|
|
97
|
-
"@stdlib/assert-is-
|
|
98
|
-
"@stdlib/assert-is-
|
|
99
|
-
"@stdlib/assert-is-
|
|
100
|
-
"@stdlib/assert-is-
|
|
101
|
-
"@stdlib/
|
|
102
|
-
"@stdlib/
|
|
103
|
-
"@stdlib/
|
|
104
|
-
"@stdlib/
|
|
105
|
-
"@stdlib/
|
|
106
|
-
"@stdlib/
|
|
107
|
-
"@stdlib/
|
|
108
|
-
"@stdlib/
|
|
109
|
-
"@stdlib/
|
|
110
|
-
"@stdlib/
|
|
111
|
-
"@stdlib/
|
|
112
|
-
"@stdlib/
|
|
113
|
-
"@stdlib/
|
|
114
|
-
"@stdlib/
|
|
115
|
-
"@stdlib/
|
|
116
|
-
"@stdlib/
|
|
117
|
-
"@stdlib/
|
|
118
|
-
"@stdlib/
|
|
119
|
-
"@stdlib/
|
|
120
|
-
"@stdlib/
|
|
121
|
-
"@stdlib/
|
|
122
|
-
"@stdlib/math-base-
|
|
123
|
-
"@stdlib/math-base-
|
|
124
|
-
"@stdlib/math-base-
|
|
125
|
-
"@stdlib/math-base-
|
|
126
|
-
"@stdlib/math-base-
|
|
127
|
-
"@stdlib/
|
|
128
|
-
"@stdlib/
|
|
129
|
-
"@stdlib/
|
|
130
|
-
"@stdlib/
|
|
131
|
-
"@stdlib/
|
|
132
|
-
"@stdlib/
|
|
133
|
-
"@stdlib/
|
|
134
|
-
"@stdlib/
|
|
135
|
-
"@stdlib/
|
|
136
|
-
"@stdlib/
|
|
137
|
-
"@stdlib/
|
|
138
|
-
"@stdlib/
|
|
139
|
-
"@stdlib/
|
|
140
|
-
"@stdlib/
|
|
141
|
-
"@stdlib/
|
|
142
|
-
"@stdlib/
|
|
143
|
-
"@stdlib/
|
|
144
|
-
"@stdlib/
|
|
145
|
-
"@stdlib/
|
|
146
|
-
"@stdlib/
|
|
147
|
-
"@stdlib/
|
|
148
|
-
"@stdlib/
|
|
149
|
-
"@stdlib/
|
|
83
|
+
"@stdlib/array-base-accessor-getter": "^0.2.0",
|
|
84
|
+
"@stdlib/array-base-accessor-setter": "^0.2.0",
|
|
85
|
+
"@stdlib/array-base-assert-is-accessor-array": "^0.2.0",
|
|
86
|
+
"@stdlib/array-base-assert-is-complex128array": "^0.2.0",
|
|
87
|
+
"@stdlib/array-base-assert-is-complex64array": "^0.2.0",
|
|
88
|
+
"@stdlib/array-base-getter": "^0.2.0",
|
|
89
|
+
"@stdlib/array-base-setter": "^0.2.0",
|
|
90
|
+
"@stdlib/array-buffer": "^0.2.0",
|
|
91
|
+
"@stdlib/array-complex128": "^0.1.0",
|
|
92
|
+
"@stdlib/array-complex64": "^0.1.0",
|
|
93
|
+
"@stdlib/array-dtype": "^0.1.0",
|
|
94
|
+
"@stdlib/array-filled": "^0.1.0",
|
|
95
|
+
"@stdlib/array-filled-by": "^0.1.0",
|
|
96
|
+
"@stdlib/array-float32": "^0.2.0",
|
|
97
|
+
"@stdlib/array-float64": "^0.2.0",
|
|
98
|
+
"@stdlib/array-uint8": "^0.2.0",
|
|
99
|
+
"@stdlib/assert-has-own-property": "^0.2.0",
|
|
100
|
+
"@stdlib/assert-is-array": "^0.2.0",
|
|
101
|
+
"@stdlib/assert-is-browser": "^0.2.0",
|
|
102
|
+
"@stdlib/assert-is-complex128": "^0.2.0",
|
|
103
|
+
"@stdlib/assert-is-complex64": "^0.2.0",
|
|
104
|
+
"@stdlib/assert-is-complex64array": "^0.1.0",
|
|
105
|
+
"@stdlib/assert-is-float32array": "^0.2.0",
|
|
106
|
+
"@stdlib/assert-is-float64array": "^0.2.0",
|
|
107
|
+
"@stdlib/assert-is-function": "^0.2.0",
|
|
108
|
+
"@stdlib/assert-is-function-array": "^0.2.0",
|
|
109
|
+
"@stdlib/assert-is-integer": "^0.2.0",
|
|
110
|
+
"@stdlib/assert-is-integer-array": "^0.2.0",
|
|
111
|
+
"@stdlib/assert-is-nonnegative-integer": "^0.2.0",
|
|
112
|
+
"@stdlib/assert-is-string": "^0.2.0",
|
|
113
|
+
"@stdlib/assert-is-string-array": "^0.2.0",
|
|
114
|
+
"@stdlib/assert-is-typed-array": "^0.2.0",
|
|
115
|
+
"@stdlib/assert-is-typed-array-like": "^0.2.0",
|
|
116
|
+
"@stdlib/assert-is-uint8array": "^0.2.0",
|
|
117
|
+
"@stdlib/complex-base-cast-return": "^0.2.0",
|
|
118
|
+
"@stdlib/complex-base-wrap-function": "^0.2.0",
|
|
119
|
+
"@stdlib/complex-float32": "^0.2.0",
|
|
120
|
+
"@stdlib/complex-float64": "^0.2.0",
|
|
121
|
+
"@stdlib/complex-imag": "^0.2.0",
|
|
122
|
+
"@stdlib/complex-imagf": "^0.2.0",
|
|
123
|
+
"@stdlib/complex-real": "^0.2.0",
|
|
124
|
+
"@stdlib/complex-realf": "^0.2.0",
|
|
125
|
+
"@stdlib/fs-read-dir": "^0.2.0",
|
|
126
|
+
"@stdlib/fs-read-file": "^0.2.0",
|
|
127
|
+
"@stdlib/fs-read-json": "^0.2.0",
|
|
128
|
+
"@stdlib/fs-unlink": "^0.2.0",
|
|
129
|
+
"@stdlib/fs-write-file": "^0.2.0",
|
|
130
|
+
"@stdlib/math-base-assert-is-nan": "^0.2.0",
|
|
131
|
+
"@stdlib/math-base-assert-is-nanf": "^0.2.0",
|
|
132
|
+
"@stdlib/math-base-ops-add": "^0.2.0",
|
|
133
|
+
"@stdlib/math-base-ops-add3": "^0.2.0",
|
|
134
|
+
"@stdlib/math-base-ops-add4": "^0.2.0",
|
|
135
|
+
"@stdlib/math-base-ops-add5": "^0.2.0",
|
|
136
|
+
"@stdlib/math-base-ops-addf": "^0.2.0",
|
|
137
|
+
"@stdlib/math-base-ops-cadd": "^0.2.0",
|
|
138
|
+
"@stdlib/math-base-ops-caddf": "^0.2.0",
|
|
139
|
+
"@stdlib/math-base-special-abs": "^0.2.0",
|
|
140
|
+
"@stdlib/math-base-special-absf": "^0.2.0",
|
|
141
|
+
"@stdlib/math-base-special-cceil": "^0.2.0",
|
|
142
|
+
"@stdlib/math-base-special-cceilf": "^0.2.0",
|
|
143
|
+
"@stdlib/math-base-special-ceil": "^0.2.0",
|
|
144
|
+
"@stdlib/math-base-special-cidentity": "^0.2.0",
|
|
145
|
+
"@stdlib/math-base-special-cidentityf": "^0.2.0",
|
|
146
|
+
"@stdlib/math-base-special-floor": "^0.2.0",
|
|
147
|
+
"@stdlib/math-base-special-identity": "^0.2.0",
|
|
148
|
+
"@stdlib/math-base-special-identityf": "^0.2.0",
|
|
149
|
+
"@stdlib/math-base-special-pow": "^0.2.0",
|
|
150
|
+
"@stdlib/math-base-special-round": "^0.2.0",
|
|
151
|
+
"@stdlib/ndarray-base-bytes-per-element": "^0.2.0",
|
|
152
|
+
"@stdlib/ndarray-base-char2dtype": "^0.2.0",
|
|
153
|
+
"@stdlib/ndarray-base-dtype-char": "^0.2.0",
|
|
154
|
+
"@stdlib/ndarray-base-dtype-desc": "^0.2.0",
|
|
155
|
+
"@stdlib/ndarray-base-dtype2c": "^0.2.0",
|
|
156
|
+
"@stdlib/ndarray-base-dtypes2signatures": "^0.2.0",
|
|
157
|
+
"@stdlib/ndarray-promotion-rules": "^0.2.0",
|
|
158
|
+
"@stdlib/ndarray-safe-casts": "^0.2.0",
|
|
159
|
+
"@stdlib/random-base-bernoulli": "^0.1.0",
|
|
160
|
+
"@stdlib/random-base-discrete-uniform": "^0.1.0",
|
|
161
|
+
"@stdlib/random-base-randu": "^0.1.0",
|
|
162
|
+
"@stdlib/random-base-uniform": "^0.1.0",
|
|
163
|
+
"@stdlib/strided-dtypes": "^0.2.0",
|
|
164
|
+
"@stdlib/string-format": "^0.2.0",
|
|
165
|
+
"@stdlib/string-replace": "^0.2.0",
|
|
166
|
+
"@stdlib/string-substring-after": "^0.2.0",
|
|
167
|
+
"@stdlib/string-substring-before": "^0.2.0",
|
|
168
|
+
"@stdlib/string-uppercase": "^0.2.0",
|
|
169
|
+
"@stdlib/time-current-year": "^0.2.0",
|
|
170
|
+
"@stdlib/utils-constant-function": "^0.2.0",
|
|
171
|
+
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.0",
|
|
172
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
|
|
173
|
+
"@stdlib/utils-keys": "^0.2.0",
|
|
174
|
+
"@stdlib/utils-noop": "^0.2.0",
|
|
175
|
+
"@stdlib/utils-object-inverse": "^0.2.0",
|
|
150
176
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
151
177
|
"istanbul": "^0.4.1",
|
|
152
|
-
"tap-
|
|
178
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
179
|
+
"@stdlib/bench-harness": "^0.2.0",
|
|
180
|
+
"@stdlib/bench": "^0.3.1"
|
|
153
181
|
},
|
|
154
182
|
"engines": {
|
|
155
183
|
"node": ">=0.10.0",
|
|
@@ -181,7 +209,7 @@
|
|
|
181
209
|
"elementwise"
|
|
182
210
|
],
|
|
183
211
|
"funding": {
|
|
184
|
-
"type": "
|
|
185
|
-
"url": "https://
|
|
212
|
+
"type": "opencollective",
|
|
213
|
+
"url": "https://opencollective.com/stdlib"
|
|
186
214
|
}
|
|
187
215
|
}
|
package/docs/types/test.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @license Apache-2.0
|
|
3
|
-
*
|
|
4
|
-
* Copyright (c) 2021 The Stdlib Authors.
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/* tslint:disable:no-unused-expression */
|
|
20
|
-
|
|
21
|
-
import base = require( './index' );
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
// TESTS //
|
|
25
|
-
|
|
26
|
-
// The exported value is the expected interface...
|
|
27
|
-
{
|
|
28
|
-
base; // $ExpectType Namespace
|
|
29
|
-
}
|