summaryrefslogtreecommitdiff
path: root/lib/constants.js
blob: c1cbf2db3cce37f70b74e7c99baea12332093147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

// This module is deprecated in documentation only. Users should be directed
// towards using the specific constants exposed by the individual modules on
// which they are most relevant.
// Deprecation Code: DEP0008
const constants = process.binding('constants');
Object.assign(exports,
              constants.os.errno,
              constants.os.signals,
              constants.fs,
              constants.crypto);