WIP - add extractor, generate snippet_data
This commit is contained in:
14
node_modules/is-valid-path/index.js
generated
vendored
Normal file
14
node_modules/is-valid-path/index.js
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
/*!
|
||||
* is-valid-path <https://github.com/jonschlinkert/is-valid-path>
|
||||
*
|
||||
* Copyright (c) 2015 Jon Schlinkert, contributors.
|
||||
* Licensed under the MIT license.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var isInvalidPath = require('is-invalid-path');
|
||||
|
||||
module.exports = function (str) {
|
||||
return isInvalidPath(str) === false;
|
||||
};
|
||||
Reference in New Issue
Block a user