Pathologic was missing because of a .git folder inside.
[yaffs-website] / node_modules / core-js / modules / es6.date.to-string.js
1 var DateProto    = Date.prototype
2   , INVALID_DATE = 'Invalid Date'
3   , TO_STRING    = 'toString'
4   , $toString    = DateProto[TO_STRING]
5   , getTime      = DateProto.getTime;
6 if(new Date(NaN) + '' != INVALID_DATE){
7   require('./_redefine')(DateProto, TO_STRING, function toString(){
8     var value = getTime.call(this);
9     return value === value ? $toString.call(this) : INVALID_DATE;
10   });
11 }