File size: 203 Bytes
b5ea024
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"use strict";

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