frontend/.pnpm-store/v3/files/2f/e903a455ec7bf37fca0cbd84c2b4a2eeff8613a09348e55f8a573b9c4efcd5946eeb2dc16fc3c6562d9530665322671df4e7edf1f5baa7a694ac1e84d5d496

17 lines
281 B
Plaintext

"use strict";
module.exports = function (length) {
if (!length) {
return function () {
return "";
};
}
return function (args) {
var id = String(args[0]), i = 0, currentLength = length;
while (--currentLength) {
id += "\u0001" + args[++i];
}
return id;
};
};