globject

Get values by glob-like keys

MIT 7 个版本
安装
npm install globject
yarn add globject
pnpm add globject
bun add globject
README

globject

Get values by glob-like keys

Install

npm install globject --save

Usage

var globject = require('globject');
var routes = {
  '**/about/**': 'about.html',
  '**': 'index.html'
};

var routesObj = globject(routes);

console.log(routesObj('/about/somepage.html')); // OUTPUTS: about.html
console.log(routesObj('/any/route.html'')); // OUTPUTS: index.html

Run Tests

npm install
npm test
版本列表
1.0.2 2016-10-19
1.0.1 2015-01-14
1.0.0 2014-11-17
0.1.3 2014-01-22
0.1.2 2014-01-16
0.1.1 2014-01-16
0.1.0 2014-01-16