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

// This module is soft-deprecated. Users should be directed towards using
// the specific constants exposed by the individual modules on which they
// are most relevant.
const constants = process.binding('constants');
Object.assign(exports,
              constants.os.errors,
              constants.os.signals,
              constants.fs,
              constants.crypto);