mirror of
https://github.com/musix-org/musix-oss
synced 2024-12-23 19:23:18 +00:00
7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
require('../../modules/es.date.to-string');
|
|
var dateToString = Date.prototype.toString;
|
|
|
|
module.exports = function toString(it) {
|
|
return dateToString.call(it);
|
|
};
|