UNPKG

228 BJavaScriptView Raw
1/**
2 * Check whether a property is a $-variable
3 *
4 * @param {string} property
5 * @return {boolean} If `true`, property is a $-variable
6 */
7
8module.exports = function isDollarVariable(property) {
9 return property[0] === '$';
10};