refer-service.js 288 Bytes
/**
 * 跳转白名单,只有这个才能正确跳转
 * Created by TaoHuang on 2016/11/29.
 */

'use strict';

const _ = require('lodash');
const allowedList = ['yohobuy.com','yoho.cn'];


module.exports = (refer) => {
    return _.some(allowedList, domain => refer.match(domain));
};