UNPKG

ember-cli-ajh

Version:

Command line tool for developing ambitious ember.js apps

13 lines (11 loc) 247 B
'use strict'; module.exports = function (length) { if (!length) { return function () { return ''; }; } return function (args) { var id = String(args[0]), i = 0, l = length; while (--l) { id += '\u0001' + args[++i]; } return id; }; };