13 lines
259 B
Plaintext
13 lines
259 B
Plaintext
|
/* eslint-disable */
|
||
|
var array = require('../wxs/array.wxs');
|
||
|
|
||
|
function isActive (activeList, itemId) {
|
||
|
if (array.isArray(activeList)) {
|
||
|
return activeList.indexOf(itemId) > -1;
|
||
|
}
|
||
|
|
||
|
return activeList === itemId;
|
||
|
}
|
||
|
|
||
|
module.exports.isActive = isActive;
|