_is-extensible.js #1

  • //
  • guest/
  • jen_bottom/
  • ember/
  • tutorial/
  • testapp/
  • node_modules/
  • es5-ext/
  • array/
  • _is-extensible.js
  • View
  • Commits
  • Open Download .zip Download (292 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;
}());
# Change User Description Committed
#1 23539 jenbottom Adding the basic code for ember test appk, created with 'ember new' command