NNicolas Chauletcheckstyle
ccf0c823创建于 2016年7月27日历史提交
'use strict';

/**
* Helper object
*/
var Helper = {
  isString: function(testVar) {
    return typeof testVar === 'string' || testVar instanceof String;
  }
};

module.exports = Helper;