mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-13 11:12:47 +00:00
updated bunch of file paths and changed the way posts are loaded
This commit is contained in:
11
node_modules/es5-ext/test/object/assign/shim.js
generated
vendored
Normal file
11
node_modules/es5-ext/test/object/assign/shim.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function (t, a) {
|
||||
var o1 = { a: 1, b: 2 }
|
||||
, o2 = { b: 3, c: 4 };
|
||||
|
||||
a(t(o1, o2), o1, "Returns self");
|
||||
a.deep(o1, { a: 1, b: 3, c: 4 }, "Single: content");
|
||||
|
||||
a.deep(t({}, o1, o2), { a: 1, b: 3, c: 4 }, "Multi argument");
|
||||
};
|
||||
Reference in New Issue
Block a user