mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 10:52:47 +00:00
13 lines
298 B
JavaScript
13 lines
298 B
JavaScript
'use strict';
|
|
|
|
var indexTest = require('tad/lib/utils/index-test')
|
|
|
|
, path = require('path').resolve(__dirname, '../../../reg-exp/#');
|
|
|
|
module.exports = function (t, a, d) {
|
|
indexTest(indexTest.readDir(path).aside(function (data) {
|
|
delete data.sticky;
|
|
delete data.unicode;
|
|
}))(t, a, d);
|
|
};
|