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

12
node_modules/es5-ext/test/reg-exp/#/index.js generated vendored Normal file
View File

@@ -0,0 +1,12 @@
'use strict';
var indexTest = require('tad/lib/utils/index-test')
, path = require('path').resolve(__dirname, '../../../reg-exp/#');
module.exports = function (t, a, d) {
indexTest(indexTest.readDir(path).aside(function (data) {
delete data.sticky;
delete data.unicode;
}))(t, a, d);
};

10
node_modules/es5-ext/test/reg-exp/#/is-sticky.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
'use strict';
module.exports = function (t, a) {
var re;
a(t.call(/raz/), false, "Normal");
a(t.call(/raz/g), false, "Global");
try { re = new RegExp('raz', 'y'); } catch (ignore) {}
if (!re) return;
a(t.call(re), true, "Sticky");
};

10
node_modules/es5-ext/test/reg-exp/#/is-unicode.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
'use strict';
module.exports = function (t, a) {
var re;
a(t.call(/raz/), false, "Normal");
a(t.call(/raz/g), false, "Global");
try { re = new RegExp('raz', 'u'); } catch (ignore) {}
if (!re) return;
a(t.call(re), true, "Unicode");
};

View File

@@ -0,0 +1,5 @@
'use strict';
var isImplemented = require('../../../../reg-exp/#/match/is-implemented');
module.exports = function (a) { a(isImplemented(), true); };

3
node_modules/es5-ext/test/reg-exp/#/match/index.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
'use strict';
module.exports = require('./shim');

View File

@@ -0,0 +1,3 @@
'use strict';
module.exports = function (t, a) { a(typeof t(), 'boolean'); };

8
node_modules/es5-ext/test/reg-exp/#/match/shim.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
'use strict';
module.exports = function (t, a) {
var result = ['foo'];
result.index = 0;
result.input = 'foobar';
a.deep(t.call(/foo/, 'foobar'), result);
};

View File

@@ -0,0 +1,5 @@
'use strict';
var isImplemented = require('../../../../reg-exp/#/replace/is-implemented');
module.exports = function (a) { a(isImplemented(), true); };

3
node_modules/es5-ext/test/reg-exp/#/replace/index.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
'use strict';
module.exports = require('./shim');

View File

@@ -0,0 +1,3 @@
'use strict';
module.exports = function (t, a) { a(typeof t(), 'boolean'); };

5
node_modules/es5-ext/test/reg-exp/#/replace/shim.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
module.exports = function (t, a) {
a(t.call(/foo/, 'foobar', 'mar'), 'marbar');
};

View File

@@ -0,0 +1,5 @@
'use strict';
var isImplemented = require('../../../../reg-exp/#/search/is-implemented');
module.exports = function (a) { a(isImplemented(), true); };

3
node_modules/es5-ext/test/reg-exp/#/search/index.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
'use strict';
module.exports = require('./shim');

View File

@@ -0,0 +1,3 @@
'use strict';
module.exports = function (t, a) { a(typeof t(), 'boolean'); };

5
node_modules/es5-ext/test/reg-exp/#/search/shim.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
module.exports = function (t, a) {
a(t.call(/foo/, 'barfoo'), 3);
};

View File

@@ -0,0 +1,5 @@
'use strict';
var isImplemented = require('../../../../reg-exp/#/split/is-implemented');
module.exports = function (a) { a(isImplemented(), true); };

3
node_modules/es5-ext/test/reg-exp/#/split/index.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
'use strict';
module.exports = require('./shim');

View File

@@ -0,0 +1,3 @@
'use strict';
module.exports = function (t, a) { a(typeof t(), 'boolean'); };

5
node_modules/es5-ext/test/reg-exp/#/split/shim.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
module.exports = function (t, a) {
a.deep(t.call(/\|/, 'bar|foo'), ['bar', 'foo']);
};

View File

@@ -0,0 +1,5 @@
'use strict';
var isImplemented = require('../../../../reg-exp/#/sticky/is-implemented');
module.exports = function (a) { a(isImplemented(), true); };

View File

@@ -0,0 +1,3 @@
'use strict';
module.exports = function (t, a) { a(typeof t(), 'boolean'); };

View File

@@ -0,0 +1,5 @@
'use strict';
var isImplemented = require('../../../../reg-exp/#/unicode/is-implemented');
module.exports = function (a) { a(isImplemented(), true); };

View File

@@ -0,0 +1,3 @@
'use strict';
module.exports = function (t, a) { a(typeof t(), 'boolean'); };

6
node_modules/es5-ext/test/reg-exp/escape.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use strict';
module.exports = function (t, a) {
var str = "(?:^te|er)s{2}t\\[raz]+$";
a(RegExp('^' + t(str) + '$').test(str), true);
};

12
node_modules/es5-ext/test/reg-exp/is-reg-exp.js generated vendored Normal file
View File

@@ -0,0 +1,12 @@
'use strict';
module.exports = function (t, a) {
a(t('arar'), false, "String");
a(t(12), false, "Number");
a(t(true), false, "Boolean");
a(t(new Date()), false, "Date");
a(t(new String('raz')), false, "String object");
a(t({}), false, "Plain object");
a(t(/a/), true, "Regular expression");
a(t(new RegExp('a')), true, "Regular expression via constructor");
};

17
node_modules/es5-ext/test/reg-exp/valid-reg-exp.js generated vendored Normal file
View File

@@ -0,0 +1,17 @@
'use strict';
module.exports = function (t, a) {
var r = /raz/;
a(t(r), r, "Direct");
r = new RegExp('foo');
a(t(r), r, "Constructor");
a.throws(function () {
t({});
}, "Object");
a.throws(function () {
t(function () {});
}, "Function");
a.throws(function () {
t({ exec: function () { return 20; } });
}, "Plain object");
};