node_modules/es5-ext/array/#/contains.js

Maintainability

89.83

Lines of code

7

Created with Raphaël 2.1.002550751002015-1-52014-12-42014-12-3

2015-5-18
Maintainability: 89.83

Created with Raphaël 2.1.0024682015-1-52014-12-42014-12-3

2015-5-18
Lines of Code: 7

Difficulty

5.00

Estimated Errors

0.04

Function weight

By Complexity

Created with Raphaël 2.1.0module.exports1

By SLOC

Created with Raphaël 2.1.0module.exports3
1
'use strict';
Column: 1 "Use the function form of "use strict"."
2
 
3
var indexOf = require('./e-index-of');
Column: 15 "'require' is not defined."
4
 
5
module.exports = function (searchElement/*, position*/) {
Column: 1 "'module' is not defined."
6
    return indexOf.call(this, searchElement, arguments[1]) > -1;
7
};