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

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

@@ -0,0 +1,10 @@
'use strict';
module.exports = {
isSticky: require('./is-sticky'),
isUnicode: require('./is-unicode'),
match: require('./match'),
replace: require('./replace'),
search: require('./search'),
split: require('./split')
};

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

@@ -0,0 +1,9 @@
'use strict';
var validRegExp = require('../valid-reg-exp')
, re = /\/[a-xz]*y[a-xz]*$/;
module.exports = function () {
return Boolean(String(validRegExp(this)).match(re));
};

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

@@ -0,0 +1,9 @@
'use strict';
var validRegExp = require('../valid-reg-exp')
, re = /\/[a-xz]*u[a-xz]*$/;
module.exports = function () {
return Boolean(String(validRegExp(this)).match(re));
};

6
node_modules/es5-ext/reg-exp/#/match/implement.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use strict';
if (!require('./is-implemented')()) {
Object.defineProperty(RegExp.prototype, 'match', { value: require('./shim'),
configurable: true, enumerable: false, writable: true });
}

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

@@ -0,0 +1,5 @@
'use strict';
module.exports = require('./is-implemented')()
? RegExp.prototype.match
: require('./shim');

View File

@@ -0,0 +1,8 @@
'use strict';
var re = /foo/;
module.exports = function () {
if (typeof re.match !== 'function') return false;
return re.match('barfoobar') && !re.match('elo');
};

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

@@ -0,0 +1,8 @@
'use strict';
var validRegExp = require('../../valid-reg-exp');
module.exports = function (string) {
validRegExp(this);
return String(string).match(this);
};

6
node_modules/es5-ext/reg-exp/#/replace/implement.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use strict';
if (!require('./is-implemented')()) {
Object.defineProperty(RegExp.prototype, 'replace', { value: require('./shim'),
configurable: true, enumerable: false, writable: true });
}

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

@@ -0,0 +1,5 @@
'use strict';
module.exports = require('./is-implemented')()
? RegExp.prototype.replace
: require('./shim');

View File

@@ -0,0 +1,8 @@
'use strict';
var re = /foo/;
module.exports = function () {
if (typeof re.replace !== 'function') return false;
return re.replace('foobar', 'mar') === 'marbar';
};

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

@@ -0,0 +1,8 @@
'use strict';
var validRegExp = require('../../valid-reg-exp');
module.exports = function (string, replaceValue) {
validRegExp(this);
return String(string).replace(this, replaceValue);
};

6
node_modules/es5-ext/reg-exp/#/search/implement.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use strict';
if (!require('./is-implemented')()) {
Object.defineProperty(RegExp.prototype, 'search', { value: require('./shim'),
configurable: true, enumerable: false, writable: true });
}

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

@@ -0,0 +1,5 @@
'use strict';
module.exports = require('./is-implemented')()
? RegExp.prototype.search
: require('./shim');

View File

@@ -0,0 +1,8 @@
'use strict';
var re = /foo/;
module.exports = function () {
if (typeof re.search !== 'function') return false;
return re.search('barfoo') === 3;
};

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

@@ -0,0 +1,8 @@
'use strict';
var validRegExp = require('../../valid-reg-exp');
module.exports = function (string) {
validRegExp(this);
return String(string).search(this);
};

6
node_modules/es5-ext/reg-exp/#/split/implement.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use strict';
if (!require('./is-implemented')()) {
Object.defineProperty(RegExp.prototype, 'split', { value: require('./shim'),
configurable: true, enumerable: false, writable: true });
}

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

@@ -0,0 +1,5 @@
'use strict';
module.exports = require('./is-implemented')()
? RegExp.prototype.split
: require('./shim');

View File

@@ -0,0 +1,8 @@
'use strict';
var re = /\|/;
module.exports = function () {
if (typeof re.split !== 'function') return false;
return re.split('bar|foo')[1] === 'foo';
};

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

@@ -0,0 +1,8 @@
'use strict';
var validRegExp = require('../../valid-reg-exp');
module.exports = function (string) {
validRegExp(this);
return String(string).split(this);
};

8
node_modules/es5-ext/reg-exp/#/sticky/implement.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
'use strict';
var isSticky = require('../is-sticky');
if (!require('./is-implemented')()) {
Object.defineProperty(RegExp.prototype, 'sticky', { configurable: true,
enumerable: false, get: isSticky });
}

View File

@@ -0,0 +1,10 @@
'use strict';
module.exports = function () {
var dummyRegExp = /a/;
// We need to do check on instance and not on prototype due to how ES2015 spec evolved:
// https://github.com/tc39/ecma262/issues/262
// https://github.com/tc39/ecma262/pull/263
// https://bugs.chromium.org/p/v8/issues/detail?id=4617
return 'sticky' in dummyRegExp;
};

8
node_modules/es5-ext/reg-exp/#/unicode/implement.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
'use strict';
var isUnicode = require('../is-unicode');
if (!require('./is-implemented')()) {
Object.defineProperty(RegExp.prototype, 'unicode', { configurable: true,
enumerable: false, get: isUnicode });
}

View File

@@ -0,0 +1,10 @@
'use strict';
module.exports = function () {
var dummyRegExp = /a/;
// We need to do check on instance and not on prototype due to how ES2015 spec evolved:
// https://github.com/tc39/ecma262/issues/262
// https://github.com/tc39/ecma262/pull/263
// https://bugs.chromium.org/p/v8/issues/detail?id=4617
return 'unicode' in dummyRegExp;
};

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

@@ -0,0 +1,9 @@
// Thanks to Andrew Clover:
// http://stackoverflow.com/questions/3561493
// /is-there-a-regexp-escape-function-in-javascript
'use strict';
var re = /[\-\/\\\^$*+?.()|\[\]{}]/g;
module.exports = function (str) { return String(str).replace(re, '\\$&'); };

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

@@ -0,0 +1,8 @@
'use strict';
module.exports = {
'#': require('./#'),
escape: require('./escape'),
isRegExp: require('./is-reg-exp'),
validRegExp: require('./valid-reg-exp')
};

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

@@ -0,0 +1,9 @@
'use strict';
var toString = Object.prototype.toString
, id = toString.call(/a/);
module.exports = function (x) {
return (x && (x instanceof RegExp || (toString.call(x) === id))) || false;
};

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

@@ -0,0 +1,8 @@
'use strict';
var isRegExp = require('./is-reg-exp');
module.exports = function (x) {
if (!isRegExp(x)) throw new TypeError(x + " is not a RegExp object");
return x;
};