5 lines
159 B
JavaScript
5 lines
159 B
JavaScript
require('../../modules/es6.date.to-string');
|
|
var $toString = Date.prototype.toString;
|
|
module.exports = function toString(it) {
|
|
return $toString.call(it);
|
|
};
|