@magic/types
Advanced tools
Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "@magic/types", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "typechecking library", | ||
@@ -36,4 +36,4 @@ "author": "Jascha Ehrenreich <jascha@jaeh.at>", | ||
"@magic/core": "github:magic/core", | ||
"@magic/test": "0.1.0" | ||
"@magic/test": "0.1.1" | ||
} | ||
} |
@@ -37,3 +37,3 @@ # @magic/types | ||
// single function import | ||
const { isArray } = require('@magic/types') | ||
import { isArray } from '@magic/types' | ||
@@ -45,3 +45,3 @@ isArray([]) // true | ||
```javascript | ||
const is = require('@magic/types') | ||
import is from '@magic/types' | ||
@@ -174,1 +174,10 @@ is.array([]) // true | ||
added Map, WeakMap, Set and WeakSet | ||
##### 0.1.0 | ||
use es6 modules | ||
##### 0.1.1 | ||
FIX: add module field to package.json | ||
##### 0.1.2 | ||
FIX: is.number no longer errors on node es6 modules and other weird objects |
Sorry, the diff of this file is not supported yet
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
51283
181