mirror of https://github.com/lukechilds/node.git
Browse Source
PR-URL: https://github.com/nodejs/node/pull/14622 Fixes: https://github.com/nodejs/node/issues/14619 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Alexey Orlenko <eaglexrlnk@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>canary-base
XadillaX
7 years ago
committed by
Refael Ackermann
2 changed files with 40 additions and 5 deletions
@ -0,0 +1,27 @@ |
|||||
|
'use strict'; |
||||
|
|
||||
|
const common = require('../common'); |
||||
|
const assert = require('assert'); |
||||
|
const os = require('os'); |
||||
|
|
||||
|
const eol = common.isWindows ? '\r\n' : '\n'; |
||||
|
|
||||
|
assert.strictEqual(os.EOL, eol); |
||||
|
|
||||
|
common.expectsError(function() { |
||||
|
os.EOL = 123; |
||||
|
}, { |
||||
|
type: TypeError, |
||||
|
message: /^Cannot assign to read only property 'EOL' of object '#<Object>'$/ |
||||
|
}); |
||||
|
|
||||
|
const foo = 'foo'; |
||||
|
Object.defineProperties(os, { |
||||
|
EOL: { |
||||
|
configurable: true, |
||||
|
enumerable: true, |
||||
|
writable: false, |
||||
|
value: foo |
||||
|
} |
||||
|
}); |
||||
|
assert.strictEqual(os.EOL, foo); |
Loading…
Reference in new issue