yet-another-js-utils 0.0.2 → 0.0.3

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.
Files changed (2) hide show
  1. package/js-utils.js +3 -3
  2. package/package.json +1 -1
package/js-utils.js CHANGED
@@ -1,5 +1,4 @@
1
- module.exports =
2
- (function () { return {
1
+ const yaju = {
3
2
  // # Nil
4
3
 
5
4
  // I like the NOT operator
@@ -298,4 +297,5 @@ module.exports =
298
297
  return functions.reduce((res, fun) => fun(res), input);
299
298
  }
300
299
  }
301
- });
300
+
301
+ module.exports = yaju;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "yet-another-js-utils",
3
3
  "description": "Basic javascript utils",
4
4
  "authors": "Adrian Turcev",
5
- "version": "0.0.2",
5
+ "version": "0.0.3",
6
6
  "license": "MPL-2.0",
7
7
  "homepage": "https://github.com/adrianturcev/js-utils",
8
8
  "repository": {