mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 11:29:26 +00:00

The require('constants') module is currently undocumented and mashes together unrelated constants. This refactors the require('constants') in favor of distinct os.constants, fs.constants, and crypto.constants that are specific to the modules for which they are relevant. The next step is to document those within the specific modules. PR-URL: https://github.com/nodejs/node/pull/6534 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Robert Lindstaedt <robert.lindstaedt@gmail.com>
13 lines
303 B
JavaScript
13 lines
303 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const constants = process.binding('constants');
|
|
|
|
if (process.platform === 'linux') {
|
|
assert('O_NOATIME' in constants.fs);
|
|
assert.strictEqual(constants.fs.O_NOATIME, 0x40000);
|
|
} else {
|
|
assert(!('O_NOATIME' in constants.fs));
|
|
}
|