1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 10:52:47 +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

5
node_modules/es5-ext/test/math/_pack-ieee754.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
module.exports = function (t, a) {
a.deep(t(1.337, 8, 23), [63, 171, 34, 209]);
};

5
node_modules/es5-ext/test/math/_unpack-ieee754.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
module.exports = function (t, a) {
a.deep(t([63, 171, 34, 209], 8, 23), 1.3370000123977661);
};

5
node_modules/es5-ext/test/math/acosh/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/acosh/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'); };

11
node_modules/es5-ext/test/math/acosh/shim.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(-1), NaN, "Negative");
a(t(0), NaN, "Zero");
a(t(0.5), NaN, "Below 1");
a(t(1), 0, "1");
a(t(2), 1.3169578969248166, "Other");
a(t(Infinity), Infinity, "Infinity");
};

5
node_modules/es5-ext/test/math/asinh/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/asinh/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'); };

10
node_modules/es5-ext/test/math/asinh/shim.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
'use strict';
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(0), 0, "Zero");
a(t(Infinity), Infinity, "Infinity");
a(t(-Infinity), -Infinity, "-Infinity");
a(t(-2), -1.4436354751788103, "Negative");
a(t(2), 1.4436354751788103, "Positive");
};

5
node_modules/es5-ext/test/math/atanh/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/atanh/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'); };

11
node_modules/es5-ext/test/math/atanh/shim.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(-2), NaN, "Less than -1");
a(t(2), NaN, "Greater than 1");
a(t(-1), -Infinity, "-1");
a(t(1), Infinity, "1");
a(t(0), 0, "Zero");
a(t(0.5), 0.5493061443340549, "Ohter");
};

5
node_modules/es5-ext/test/math/cbrt/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/cbrt/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'); };

11
node_modules/es5-ext/test/math/cbrt/shim.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(0), 0, "Zero");
a(t(Infinity), Infinity, "Infinity");
a(t(-Infinity), -Infinity, "-Infinity");
a(t(-1), -1, "-1");
a(t(1), 1, "1");
a(t(2), 1.2599210498948732, "Ohter");
};

5
node_modules/es5-ext/test/math/clz32/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/clz32/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'); };

12
node_modules/es5-ext/test/math/clz32/shim.js generated vendored Normal file
View File

@@ -0,0 +1,12 @@
'use strict';
module.exports = function (t, a) {
a(t(1), 31, "1");
a(t(1000), 22, "1000");
a(t(), 32, "No arguments");
a(t(Infinity), 32, "Infinity");
a(t(-Infinity), 32, "-Infinity");
a(t("foo"), 32, "String");
a(t(true), 31, "Boolean");
a(t(3.5), 30, "Float");
};

5
node_modules/es5-ext/test/math/cosh/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/cosh/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'); };

13
node_modules/es5-ext/test/math/cosh/shim.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
'use strict';
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(0), 1, "Zero");
a(t(Infinity), Infinity, "Infinity");
a(t(-Infinity), Infinity, "-Infinity");
a(t(1), 1.5430806348152437, "1");
a(t(Number.MAX_VALUE), Infinity);
a(t(-Number.MAX_VALUE), Infinity);
a(t(Number.MIN_VALUE), 1);
a(t(-Number.MIN_VALUE), 1);
};

5
node_modules/es5-ext/test/math/expm1/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/expm1/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'); };

9
node_modules/es5-ext/test/math/expm1/shim.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
'use strict';
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(0), 0, "Zero");
a(t(Infinity), Infinity, "Infinity");
a(t(-Infinity), -1, "-Infinity");
a(t(1).toFixed(15), '1.718281828459045', "1");
};

5
node_modules/es5-ext/test/math/fround/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/fround/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'); };

9
node_modules/es5-ext/test/math/fround/shim.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
'use strict';
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(0), 0, "Zero");
a(t(Infinity), Infinity, "Infinity");
a(t(-Infinity), -Infinity, "-Infinity");
a(t(1.337), 1.3370000123977661, "1");
};

5
node_modules/es5-ext/test/math/hypot/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/hypot/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'); };

11
node_modules/es5-ext/test/math/hypot/shim.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
module.exports = function (t, a) {
a(t(), 0, "No arguments");
a(t(0, -0, 0), 0, "Zeros");
a(t(4, NaN, Infinity), Infinity, "Infinity");
a(t(4, NaN, -Infinity), Infinity, "Infinity");
a(t(4, NaN, 34), NaN, "NaN");
a(t(3, 4), 5, "#1");
a(t(3, 4, 5), 7.0710678118654755, "#2");
};

5
node_modules/es5-ext/test/math/imul/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/imul/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'); };

9
node_modules/es5-ext/test/math/imul/shim.js generated vendored Normal file
View File

@@ -0,0 +1,9 @@
'use strict';
module.exports = function (t, a) {
a(t(), 0, "No arguments");
a(t(0, 0), 0, "Zeros");
a(t(2, 4), 8, "#1");
a(t(-1, 8), -8, "#2");
a(t(0xfffffffe, 5), -10, "#3");
};

5
node_modules/es5-ext/test/math/log10/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/log10/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'); };

10
node_modules/es5-ext/test/math/log10/shim.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
'use strict';
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(-0.5), NaN, "Less than 0");
a(t(0), -Infinity, "0");
a(t(1), 0, "1");
a(t(Infinity), Infinity, "Infinity");
a(t(2), 0.3010299956639812, "Other");
};

5
node_modules/es5-ext/test/math/log1p/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/log1p/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'); };

10
node_modules/es5-ext/test/math/log1p/shim.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
'use strict';
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(-1.5), NaN, "Less than -1");
a(t(-1), -Infinity, "-1");
a(t(0), 0, "0");
a(t(Infinity), Infinity, "Infinity");
a(t(1), 0.6931471805599453, "Other");
};

5
node_modules/es5-ext/test/math/log2/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/log2/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'); };

10
node_modules/es5-ext/test/math/log2/shim.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
'use strict';
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(-0.5), NaN, "Less than 0");
a(t(0), -Infinity, "0");
a(t(1), 0, "1");
a(t(Infinity), Infinity, "Infinity");
a(t(3).toFixed(15), '1.584962500721156', "Other");
};

5
node_modules/es5-ext/test/math/sign/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/sign/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'); };

11
node_modules/es5-ext/test/math/sign/shim.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
var is = require('../../../object/is');
module.exports = function (t, a) {
a(is(t(0), +0), true, "+0");
a(is(t(-0), -0), true, "-0");
a(t({}), NaN, true, "NaN");
a(t(-234234234), -1, "Negative");
a(t(234234234), 1, "Positive");
};

5
node_modules/es5-ext/test/math/sinh/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/sinh/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'); };

13
node_modules/es5-ext/test/math/sinh/shim.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
'use strict';
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(0), 0, "Zero");
a(t(Infinity), Infinity, "Infinity");
a(t(-Infinity), -Infinity, "-Infinity");
a(t(1), 1.1752011936438014, "1");
a(t(Number.MAX_VALUE), Infinity);
a(t(-Number.MAX_VALUE), -Infinity);
a(t(Number.MIN_VALUE), 5e-324);
a(t(-Number.MIN_VALUE), -5e-324);
};

5
node_modules/es5-ext/test/math/tanh/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/tanh/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'); };

11
node_modules/es5-ext/test/math/tanh/shim.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(0), 0, "Zero");
a(t(Infinity), 1, "Infinity");
a(t(-Infinity), -1, "-Infinity");
a(t(1), 0.7615941559557649, "1");
a(t(Number.MAX_VALUE), 1);
a(t(-Number.MAX_VALUE), -1);
};

5
node_modules/es5-ext/test/math/trunc/implement.js generated vendored Normal file
View File

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

3
node_modules/es5-ext/test/math/trunc/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'); };

16
node_modules/es5-ext/test/math/trunc/shim.js generated vendored Normal file
View File

@@ -0,0 +1,16 @@
'use strict';
var is = require('../../../object/is');
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(0), 0, "Zero");
a(t(Infinity), Infinity, "Infinity");
a(t(-Infinity), -Infinity, "-Infinity");
a(is(t(0.234), 0), true, "0");
a(is(t(-0.234), -0), true, "-0");
a(t(13.7), 13, "Positive #1");
a(t(12.3), 12, "Positive #2");
a(t(-12.3), -12, "Negative #1");
a(t(-14.7), -14, "Negative #2");
};