• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2require('../common');
3const fs = require('fs');
4const assert = require('assert');
5
6// Check if the two constants accepted by chmod() on Windows are defined.
7assert.notStrictEqual(fs.constants.S_IRUSR, undefined);
8assert.notStrictEqual(fs.constants.S_IWUSR, undefined);
9