Projekt

Obecné

Profil

Stáhnout (356 Bajtů) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
'use strict';
2
3
var GetIntrinsic = require('../GetIntrinsic');
4
5
var $TypeError = GetIntrinsic('%TypeError%');
6
7
// http://www.ecma-international.org/ecma-262/5.1/#sec-9.10
8
9
module.exports = function CheckObjectCoercible(value, optMessage) {
10
	if (value == null) {
11
		throw new $TypeError(optMessage || ('Cannot call method on ' + value));
12
	}
13
	return value;
14
};