codecombat/server/lib/utils.coffee

4 lines
110 B
CoffeeScript
Raw Normal View History

2014-08-14 10:38:50 -04:00
module.exports =
isID: (id) -> _.isString(id) and id.length is 24 and id.match(/[a-f0-9]/gi)?.length is 24