massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / normalize-string-argument.js
1 var toString = require('../internals/to-string');
2
3 module.exports = function (argument, $default) {
4   return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
5 };