nymag/nunjucks-filters

View on GitHub
filters/data/indexOf.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';
module.exports = function (str, value) {
  if (str && value) {
    return str.indexOf(value);
  } else {
    return false;
  }
};