Comparing version 3.0.0 to 3.0.1
{ | ||
"name": "kind-of", | ||
"description": "Get the native type of a value.", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"homepage": "https://github.com/jonschlinkert/kind-of", | ||
@@ -6,0 +6,0 @@ "author": "Jon Schlinkert (https://github.com/jonschlinkert)", |
@@ -111,2 +111,29 @@ # kind-of [![NPM version](https://badge.fury.io/js/kind-of.svg)](http://badge.fury.io/js/kind-of) [![Build Status](https://travis-ci.org/jonschlinkert/kind-of.svg)](https://travis-ci.org/jonschlinkert/kind-of) | ||
//=> 'symbol' | ||
kindOf(new Int8Array()); | ||
//=> 'int8array' | ||
kindOf(new Uint8Array()); | ||
//=> 'uint8array' | ||
kindOf(new Uint8ClampedArray()); | ||
//=> 'uint8clampedarray' | ||
kindOf(new Int16Array()); | ||
//=> 'int16array' | ||
kindOf(new Uint16Array()); | ||
//=> 'uint16array' | ||
kindOf(new Int32Array()); | ||
//=> 'int32array' | ||
kindOf(new Uint32Array()); | ||
//=> 'uint32array' | ||
kindOf(new Float32Array()); | ||
//=> 'float32array' | ||
kindOf(new Float64Array()); | ||
//=> 'float64array' | ||
``` | ||
@@ -113,0 +140,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11324
237