Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
Seleccion
/
node_modules
/
is-binary-path
:
index.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
'use strict'; const path = require('path'); const binaryExtensions = require('binary-extensions'); const extensions = new Set(binaryExtensions); module.exports = filePath => extensions.has(path.extname(filePath).slice(1).toLowerCase());