Pathologic was missing because of a .git folder inside.
[yaffs-website] / node_modules / global / window.js
1 if (typeof window !== "undefined") {
2     module.exports = window;
3 } else if (typeof global !== "undefined") {
4     module.exports = global;
5 } else if (typeof self !== "undefined"){
6     module.exports = self;
7 } else {
8     module.exports = {};
9 }