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