Your IP : 216.73.217.62


Current Path : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/is-binary-path/
Upload File :
Current File : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/is-binary-path/index.js

'use strict';
var path = require('path');
var binaryExtensions = require('binary-extensions');
var exts = Object.create(null);

binaryExtensions.forEach(function (el) {
	exts[el] = true;
});

module.exports = function (filepath) {
	return path.extname(filepath).slice(1).toLowerCase() in exts;
};