mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
|
|
// `Date.prototype.toGMTString` method
|
|
// https://tc39.es/ecma262/#sec-date.prototype.togmtstring
|
|
$({ target: 'Date', proto: true }, {
|
|
toGMTString: Date.prototype.toUTCString
|
|
});
|