@stdlib/utils-type-of 0.0.4 → 0.0.8
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/NOTICE +1 -1
- package/README.md +38 -2
- package/package.json +2 -1
- package/CHANGELOG.md +0 -5
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# typeOf
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> Determine a value's type.
|
|
26
26
|
|
|
@@ -255,6 +255,23 @@ str = typeOf( new Person2() );
|
|
|
255
255
|
|
|
256
256
|
<!-- /.examples -->
|
|
257
257
|
|
|
258
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
259
|
+
|
|
260
|
+
<section class="related">
|
|
261
|
+
|
|
262
|
+
* * *
|
|
263
|
+
|
|
264
|
+
## See Also
|
|
265
|
+
|
|
266
|
+
- <span class="package-name">[`@stdlib/utils/constructor-name`][@stdlib/utils/constructor-name]</span><span class="delimiter">: </span><span class="description">determine the name of a value's constructor.</span>
|
|
267
|
+
- <span class="package-name">[`@stdlib/utils/native-class`][@stdlib/utils/native-class]</span><span class="delimiter">: </span><span class="description">determine the specification defined classification of an object.</span>
|
|
268
|
+
|
|
269
|
+
</section>
|
|
270
|
+
|
|
271
|
+
<!-- /.related -->
|
|
272
|
+
|
|
273
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
274
|
+
|
|
258
275
|
|
|
259
276
|
<section class="main-repo" >
|
|
260
277
|
|
|
@@ -279,7 +296,7 @@ See [LICENSE][stdlib-license].
|
|
|
279
296
|
|
|
280
297
|
## Copyright
|
|
281
298
|
|
|
282
|
-
Copyright © 2016-
|
|
299
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
283
300
|
|
|
284
301
|
</section>
|
|
285
302
|
|
|
@@ -298,9 +315,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
298
315
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-type-of/main.svg
|
|
299
316
|
[coverage-url]: https://codecov.io/github/stdlib-js/utils-type-of?branch=main
|
|
300
317
|
|
|
318
|
+
<!--
|
|
319
|
+
|
|
301
320
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/utils-type-of.svg
|
|
302
321
|
[dependencies-url]: https://david-dm.org/stdlib-js/utils-type-of/main
|
|
303
322
|
|
|
323
|
+
-->
|
|
324
|
+
|
|
325
|
+
[umd]: https://github.com/umdjs/umd
|
|
326
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
327
|
+
|
|
328
|
+
[deno-url]: https://github.com/stdlib-js/utils-type-of/tree/deno
|
|
329
|
+
[umd-url]: https://github.com/stdlib-js/utils-type-of/tree/umd
|
|
330
|
+
[esm-url]: https://github.com/stdlib-js/utils-type-of/tree/esm
|
|
331
|
+
|
|
304
332
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
305
333
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
306
334
|
|
|
@@ -310,6 +338,14 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
310
338
|
|
|
311
339
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/utils-type-of/main/LICENSE
|
|
312
340
|
|
|
341
|
+
<!-- <related-links> -->
|
|
342
|
+
|
|
343
|
+
[@stdlib/utils/constructor-name]: https://www.npmjs.com/package/@stdlib/utils-constructor-name
|
|
344
|
+
|
|
345
|
+
[@stdlib/utils/native-class]: https://www.npmjs.com/package/@stdlib/utils-native-class
|
|
346
|
+
|
|
347
|
+
<!-- </related-links> -->
|
|
348
|
+
|
|
313
349
|
</section>
|
|
314
350
|
|
|
315
351
|
<!-- /.links -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/utils-type-of",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Determine a value's type.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"main": "./lib",
|
|
17
17
|
"directories": {
|
|
18
|
+
"benchmark": "./benchmark",
|
|
18
19
|
"doc": "./docs",
|
|
19
20
|
"example": "./examples",
|
|
20
21
|
"lib": "./lib",
|