All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.normalize-string-argument.js Maven / Gradle / Ivy

The newest version!
'use strict';
var toString = require('../internals/to-string');

module.exports = function (argument, $default) {
  return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy