forked from helpers/handlebars-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1efe1ee
commit 39c1fbe
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
'use strict'; | ||
|
||
var util = require('handlebars-utils'); | ||
var utils = require('./utils'); | ||
var helpers = module.exports; | ||
|
||
/** | ||
* Convert the given string to a regular expression. | ||
* | ||
* ```handlebars | ||
* {{toRegex "foo"}} | ||
* //=> /foo/ | ||
* ``` | ||
* @param {String} `str` | ||
* @return {RegExp} | ||
* @api public | ||
*/ | ||
|
||
helpers.toRegex = function(str, locals, options) { | ||
var opts = util.options({}, locals, options); | ||
return new RegExp(str, opts.flags); | ||
}; | ||
|
||
/** | ||
* Returns true if the given `str` matches the given regex. A regex can | ||
* be passed on the context, or using the [toRegex](#toregex) helper as a | ||
* subexpression. | ||
* | ||
* ```handlebars | ||
* {{test "bar" (toRegex "foo")}} | ||
* //=> false | ||
* {{test "foobar" (toRegex "foo")}} | ||
* //=> true | ||
* {{test "foobar" (toRegex "^foo$")}} | ||
* //=> false | ||
* ``` | ||
* @param {String} `str` | ||
* @return {RegExp} | ||
* @api public | ||
*/ | ||
|
||
helpers.test = function(str, regex) { | ||
if (!util.isString(str)) { | ||
return false; | ||
} | ||
if (!utils.typeOf(regex) === 'regexp') { | ||
throw new TypeError('expected a regular expression'); | ||
} | ||
return regex.test(str); | ||
}; |