Lines Matching refs:result
4 * @return {boolean} The result whether the string starts with $ or _.
64 * @return {boolean} The result whether is a component.
73 * @return {boolean} The result whether is a module.
82 * @return {boolean} The result whether is an APP.
91 * @return {string} The result which has been removed "@app-application".
94 const result = str.replace(APPLICATION_REG, '');
95 return result;
101 * @return {string} The result which has been removed "@app-component" and "@app-module".
104 const result = str.replace(COMPONENT_REG, '').replace(MODULE_REG, '');
105 return result;