phane-js-utils 1.0.18 → 1.0.19

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.
@@ -176,3 +176,5 @@ export function isObject(userInput) {
176
176
  export function isAnArray(userInput) {
177
177
  return Array.isArray(userInput);
178
178
  }
179
+
180
+ module.exports = { isAnArray, isBigint, isBoolean, isFunction, isNumber, isObject, isString };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phane-js-utils",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "Pure JavaScript utility functions",
5
5
  "main": "index.cjs",
6
6
  "module": "index.js",