This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const platformPath = require('path'); | |
| const { posix: path } = platformPath; | |
| const { platform } = require('os'); | |
| const fs = require('fs'); | |
| const slash = require('slash'); | |
| const VOLUME = /^([A-Z]:)/; | |
| const IS_WINDOWS = platform() === 'win32'; |