12 lines
247 B
JavaScript
12 lines
247 B
JavaScript
'use strict';
|
|
|
|
const boundedBraceExpansion = require('brace-expansion-safe');
|
|
|
|
function expand(pattern, options) {
|
|
return boundedBraceExpansion.expand(pattern, options);
|
|
}
|
|
|
|
Object.assign(expand, boundedBraceExpansion);
|
|
|
|
module.exports = expand;
|