mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
var cooked = require('../internals/string-cooked');
|
|
|
|
// `String.cooked` method
|
|
// https://github.com/tc39/proposal-string-cooked
|
|
$({ target: 'String', stat: true, forced: true }, {
|
|
cooked: cooked
|
|
});
|