Blame view

node_modules/underscore.string/helper/makeString.js 161 Bytes
f7563de62   Palak Handa   first commit
1
2
3
4
5
6
7
  /**
   * Ensure some object is a coerced to a string
   **/
  module.exports = function makeString(object) {
    if (object == null) return '';
    return '' + object;
  };