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

Function concatty

implementation.js:10–21  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

8var funcType = '[object Function]';
9
10var concatty = function concatty(a, b) {
11 var arr = [];
12
13 for (var i = 0; i < a.length; i += 1) {
14 arr[i] = a[i];
15 }
16 for (var j = 0; j < b.length; j += 1) {
17 arr[j + a.length] = b[j];
18 }
19
20 return arr;
21};
22
23var slicy = function slicy(arrLike, offset) {
24 var arr = [];

Callers 1

binderFunction · 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…