1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 02:42:48 +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 4bb8cae81e
commit 6ab45fe935
13249 changed files with 317868 additions and 2101398 deletions

24
node_modules/es5-ext/object/is-copy.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
'use strict';
var eq = require('./eq')
, value = require('./valid-value')
, keys = Object.keys
, propertyIsEnumerable = Object.prototype.propertyIsEnumerable;
module.exports = function (a, b) {
var k1, k2;
if (eq(value(a), value(b))) return true;
a = Object(a);
b = Object(b);
k1 = keys(a);
k2 = keys(b);
if (k1.length !== k2.length) return false;
return k1.every(function (key) {
if (!propertyIsEnumerable.call(b, key)) return false;
return eq(a[key], b[key]);
});
};