UNPKG
node.js-sip
Version:
latest (1.0.9)
1.0.9
1.0.2
1.0.1
1.0.0
Node.js VOIP Library
github.com/Nik-Hendricks/node.js-sip
Nik-Hendricks/node.js-sip
node.js-sip
/
RTP
/
node_modules
/
use-strict
/
test
/
assign-to-new-prop-on-nonextensible.js
4 lines
•
153 B
JavaScript
View Raw
1
2
3
4
// Assignment to a new property on a non-extensible object
var
fixed
= {}; Object.preventExtensions(
fixed
);
fixed
.newProp =
"ohai"
;
// throws a TypeError