bianco.dom-to-array
Advanced tools
Comparing version 0.0.1 to 0.0.2
11
index.js
'use strict'; | ||
/** | ||
* It will return true if the object can be looped | ||
* @param { * } obj - anything | ||
* @returns { Boolean } either true or false | ||
*/ | ||
function isIterable(obj) { | ||
return typeof obj[Symbol.iterator] === 'function' | ||
} | ||
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } | ||
var isIterable = _interopDefault(require('bianco.is-iterable')); | ||
/** | ||
@@ -13,0 +8,0 @@ * Converts any DOM node/s into a loopable array like object |
{ | ||
"name": "bianco.dom-to-array", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Covert DOM node/s into an array like object", | ||
@@ -38,6 +38,7 @@ "main": "index.js", | ||
"jsdom": "9.5.0", | ||
"jsdom-global": "2.1.0", | ||
"bianco.is-iterable": "^0.0.1", | ||
"rollup-plugin-node-resolve": "^2.0.0" | ||
"jsdom-global": "2.1.0" | ||
}, | ||
"dependencies": { | ||
"bianco.is-iterable": "^0.0.1" | ||
} | ||
} |
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
2
4857
1
41
+ Addedbianco.is-iterable@^0.0.1
+ Addedbianco.is-iterable@0.0.1(transitive)