MCPcopy Index your code
hub / github.com/Raynos/function-bind / joiny

Function joiny

implementation.js:31–40  ·  view source on GitHub ↗
(arr, joiner)

Source from the content-addressed store, hash-verified

29};
30
31var joiny = function (arr, joiner) {
32 var str = '';
33 for (var i = 0; i < arr.length; i += 1) {
34 str += arr[i];
35 if (i + 1 < arr.length) {
36 str += joiner;
37 }
38 }
39 return str;
40};
41
42module.exports = function bind(that) {
43 var target = this;

Callers 1

implementation.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…