9 lines
187 B
JavaScript
Raw Permalink Normal View History

2025-05-22 16:23:08 +08:00
"use strict";
var isIterable = require("./is-iterable");
module.exports = function (value) {
if (!isIterable(value)) throw new TypeError(value + " is not iterable");
return value;
};