mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 10:38:35 +00:00
9 lines
No EOL
201 B
JavaScript
9 lines
No EOL
201 B
JavaScript
'use strict';
|
|
|
|
module.exports = function implode(key, glue) {
|
|
if (glue === undefined) {
|
|
return this.items.join(key);
|
|
}
|
|
|
|
return new this.constructor(this.items).pluck(key).all().join(glue);
|
|
}; |