UNPKG

observable-array

Version:
9 lines (6 loc) 209 B
'use strict'; var isObservable = require('./is-observable-array'); module.exports = function (value) { if (isObservable(value)) return value; throw new TypeError(value + " is not an observable array"); };