'use strict'; /** * @ngdoc module * @name ngParseExt * @packageName angular-parse-ext * @description * * # ngParseExt * * The `ngParseExt` module provides functionality to allow Unicode characters in * identifiers inside Angular expressions. * * *
* * This module allows the usage of any identifier that follows ES6 identifier naming convention * to be used as an identifier in an Angular expression. ES6 delegates some of the identifier * rules definition to Unicode, this module uses ES6 and Unicode 8.0 identifiers convention. * */ /* global angularParseExtModule: true, IDS_Y, IDC_Y */ function isValidIdentifierStart(ch, cp) { return ch === '$' || ch === '_' || IDS_Y(cp); } function isValidIdentifierContinue(ch, cp) { return ch === '$' || ch === '_' || cp === 0x200C || //