Show More
Commit Description:
add model solution
Commit Description:
add model solution
References:
File last commit:
Show/Diff file:
Action:
node_modules/es6-iterator/valid-iterable.js | 8 lines | 187 B | application/javascript | JavascriptLexer |
move datatable to yarn
r789 "use strict";
var isIterable = require("./is-iterable");
module.exports = function (value) {
if (!isIterable(value)) throw new TypeError(value + " is not iterable");
return value;
};