isBlank.js 136 Bytes Raw Blame History Permalink 1 2 3 4 5 var makeString = require('./helper/makeString'); module.exports = function isBlank(str) { return (/^\s*$/).test(makeString(str)); };