UNPKG

is-twelve

Version:

Checking if a value is twelve is common in Javascript. Don't Repeat Yourself

9 lines (6 loc) 169 B
'use strict'; var leftpad = require('left-pad'); module.exports = function isTwelve(value) { var twelve = leftpad("twelve", 12).length return value === twelve; };