Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ToString.js « 5 « es-abstract « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80ece429b7d011ea012746df3af44dd6e694cd54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

var GetIntrinsic = require('../GetIntrinsic');

var $String = GetIntrinsic('%String%');

// http://www.ecma-international.org/ecma-262/5.1/#sec-9.8

module.exports = function ToString(value) {
	return $String(value);
};