UNPKG

1.45 kBJavaScriptView Raw
1/**
2 * use `angular.isArray` instead of `typeof` comparisons
3 *
4 * You should use the angular.isArray method instead of the default JavaScript implementation (typeof [] === "[object Array]").
5 *
6 * @version 0.1.0
7 * @category angularWrapper
8 * @sinceAngularVersion 1.x
9 */
10'use strict';
11
12var utils = require('./utils/utils');
13
14module.exports = {
15 meta: {
16 schema: []
17 },
18 create: function(context) {
19 function recordError(node, origin) {
20 if (node.type === 'Literal' && node.value === '[object Array]') {
21 context.report(origin, 'You should use the angular.isArray method', {});
22 }
23 }
24
25 return {
26 MemberExpression: function(node) {
27 if (node.object.name === 'Array' && node.property.name === 'isArray') {
28 context.report(node, 'You should use the angular.isArray method', {});
29 }
30 },
31 BinaryExpression: function(node) {
32 if (node.operator === '===' || node.operator === '!==') {
33 if (utils.isTypeOfStatement(node.left) || utils.isToStringStatement(node.left)) {
34 recordError(node.right, node);
35 } else if (utils.isTypeOfStatement(node.right) || utils.isToStringStatement(node.right)) {
36 recordError(node.left, node);
37 }
38 }
39 }
40 };
41 }
42};