cms/app-client/app/helpers/contains.js
author ymh <ymh.work@gmail.com>
Fri, 18 Nov 2016 14:48:49 +0100
changeset 428 76a47f714766
parent 392 4fbe94af93e8
child 532 1190ea937f2d
permissions -rw-r--r--
add memcached configuration option, small corrections for the build process and add installDrupal.sh file to the release

import Ember from 'ember';
import _ from 'lodash/lodash';

export function contains(params) {
    return _.contains(params[0], params[1]);
}

export default Ember.Helper.helper(contains);