blog menu page & blog article page

This commit is contained in:
Nina Juresic
2017-10-23 15:54:25 +02:00
parent f21a22b539
commit 3ec0fe7455
3048 changed files with 241133 additions and 432 deletions

22
node_modules/is-windows/index.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
/*! is-windows v0.2.0 | MIT LICENSE (c) 2015 | https://github.com/jonschlinkert/is-windows */
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD
define(factory);
} else if (typeof exports === 'object') {
// Node.js
module.exports = factory;
} else {
// Browser
root.isWindows = factory;
}
}(this, function () {
'use strict';
return (function isWindows() {
if (typeof process === 'undefined' || !process) {
return false;
}
return process.platform === 'win32';
}());
}));