UNPKG

compound-ex4

Version:

Compound-ex4 - MVC framework for NodeJS (ExpressJs 4 version), fork compoundjs(https://github.com/1602/compound)

14 lines (10 loc) 294 B
'use strict'; module.exports = (function () { var SubArray = require('./_sub-array-dummy'), arr; if (!SubArray) return false; arr = new SubArray(); if (!Array.isArray(arr)) return false; if (!(arr instanceof SubArray)) return false; arr[34] = 'foo'; return (arr.length === 35); }());