File: isBlank.js

package info (click to toggle)
underscore.string 3.3.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 852 kB
  • ctags: 431
  • sloc: makefile: 6
file content (5 lines) | stat: -rw-r--r-- 136 bytes parent folder | download | duplicates (3)
1
2
3
4
5
var makeString = require('./helper/makeString');

module.exports = function isBlank(str) {
  return (/^\s*$/).test(makeString(str));
};