DefinitelyTyped/types/wildstring/wildstring-tests.ts
2019-10-15 15:37:11 -07:00

10 lines
240 B
TypeScript

import wildstring = require('wildstring');
wildstring.wildcard = '*';
wildstring.caseSensitive = true;
wildstring.match('Test*', 'Testing');
wildstring.replace('I * node.*', 'script');
wildstring.replace('I * node.*', [ 'love', 'js' ]);