mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 08:18:24 -04: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
|
||
|
|
});
|