summaryrefslogtreecommitdiff
path: root/lib/constants.js
blob: fec7e13d94145a268939cfabb567f3373bbf820b (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.errno,
              constants.os.signals,
              constants.fs,
              constants.crypto);