1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-13 19:12:49 +00:00

updated bunch of file paths and changed the way posts are loaded

This commit is contained in:
2016-01-05 12:28:04 -06:00
parent 719ae331ae
commit c96a84d0ff
13249 changed files with 317868 additions and 2101398 deletions

19
node_modules/es5-ext/test/array/#/splice/shim.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
'use strict';
var SubArray = require('../../../../array/_sub-array-dummy-safe');
module.exports = function (t, a) {
var arr, x = {}, subArr, result;
arr = ['foo', undefined, 0, '2d', false, x, null];
a.deep(t.call(arr, 2, 2, 'bar'), [0, '2d'], "Plain array: result");
a.deep(arr, ["foo", undefined, "bar", false, x, null], "Plain array: change");
subArr = new SubArray('foo', undefined, 0, '2d', false, x, null);
result = t.call(subArr, 2, 2, 'bar');
a(result instanceof SubArray, true, "Instance of subclass");
a.deep(result, [0, '2d'], "Subclass: result");
a.deep(subArr, ["foo", undefined, "bar", false, x, null], "Subclass: change");
};