Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
555 B
23 lines
555 B
1 year ago
|
|
||
|
var hasOwn = Object.prototype.hasOwnProperty;
|
||
|
var toString = Object.prototype.toString;
|
||
|
|
||
|
module.exports = function forEach (obj, fn, ctx) {
|
||
|
if (toString.call(fn) !== '[object Function]') {
|
||
|
throw new TypeError('iterator must be a function');
|
||
|
}
|
||
|
var l = obj.length;
|
||
|
if (l === +l) {
|
||
|
for (var i = 0; i < l; i++) {
|
||
|
fn.call(ctx, obj[i], i, obj);
|
||
|
}
|
||
|
} else {
|
||
|
for (var k in obj) {
|
||
|
if (hasOwn.call(obj, k)) {
|
||
|
fn.call(ctx, obj[k], k, obj);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|