UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

10 lines 344 B
var DateProto = Date.prototype , INVALID_DATE = 'Invalid Date' , TO_STRING = 'toString' , $toString = DateProto[TO_STRING]; if(new Date(NaN) + '' != INVALID_DATE){ require('./$.redefine')(DateProto, TO_STRING, function toString(){ var value = +this; return value === value ? $toString.call(this) : INVALID_DATE; }); }