yoqw/web/cms/app/helpers/is-str.js
2020-07-01 15:22:07 +08:00

10 lines
262 B
JavaScript

import { helper } from '@ember/component/helper';
export function isStr([val]) {
return typeof val === 'string' ||
((!!val && typeof val === 'object') &&
Object.prototype.toString.call(val) === '[object String]');
}
export default helper(isStr);