Comparing version 1.0.0 to 1.0.1
# Changelog | ||
## v1.0.1 | ||
### Improved | ||
- Added more examples to `isNil` | ||
### Fixed | ||
- Typo in `isNil` examples | ||
## v1.0.0 | ||
@@ -4,0 +14,0 @@ |
@@ -5,3 +5,3 @@ (function (global, factory) { | ||
(global = global || self, factory(global.kyanite = {})); | ||
}(this, function (exports) { 'use strict'; | ||
}(this, (function (exports) { 'use strict'; | ||
@@ -1413,2 +1413,2 @@ function _curry2(fn) { | ||
})); | ||
}))); |
{ | ||
"name": "kyanite", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A small library of pure functional utilities to make life easier and data better", | ||
@@ -15,4 +15,4 @@ "main": "dist/kyanite.min.js", | ||
"devDependencies": { | ||
"@babel/core": "7.6.0", | ||
"@babel/preset-env": "7.6.0", | ||
"@babel/core": "7.7.4", | ||
"@babel/preset-env": "7.7.4", | ||
"esm": "3.2.25", | ||
@@ -24,9 +24,9 @@ "gh-pages": "2.1.1", | ||
"nyc": "14.1.1", | ||
"pinet": "0.2.0", | ||
"rollup": "1.21.4", | ||
"pinet": "0.2.3", | ||
"rollup": "1.27.8", | ||
"rollup-plugin-babel": "4.3.3", | ||
"rollup-plugin-cleanup": "3.1.1", | ||
"rollup-plugin-filesize": "6.2.0", | ||
"rollup-plugin-filesize": "6.2.1", | ||
"rollup-plugin-terser": "5.1.2", | ||
"standard": "14.3.0", | ||
"standard": "14.3.1", | ||
"tap-spec": "5.0.0", | ||
@@ -33,0 +33,0 @@ "tape": "4.11.0" |
@@ -128,5 +128,5 @@ <p align=center> | ||
A lot of the if not most of the inpiration for this library came from 2 libraries I follow closely, Primarily most of it stems from: | ||
A lot of the if not most of the inspiration for this library came from 2 libraries I follow closely, Primarily most of it stems from: | ||
- [foreword](https://github.com/abstract-tools/foreword) by [Abstract Tools](https://github.com/abstract-tools) which is a very nice and easy to use library developed by a close friend and mentor. This is where a lot of functionality ideas came from I can't recommend it enough. | ||
- [Ramdajs](http://ramdajs.com/) by [Ramda](https://github.com/ramda) a beautiful and feature packed library where the original idea started |
@@ -14,5 +14,7 @@ /** | ||
* | ||
* isNill(null) // => true | ||
* isNill() // => true | ||
* isNill(1) // => false | ||
* isNil(null) // => true | ||
* isNil() // => true | ||
* isNil(1) // => false | ||
* isNil(0) // => false | ||
* isNil('') // => false | ||
*/ | ||
@@ -19,0 +21,0 @@ const isNil = x => x == null |
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
262316
161
6683