mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 12:20:04 +02:00
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);
|
|
};
|