ngParseExt
First include angular-parse-ext.js
in your HTML:
<script src="angular.js">
<script src="angular-parse-ext.js">
You can download this file from the following places:
//ajax.googleapis.com/ajax/libs/angularjs/X.Y.Z/angular-parse-ext.js
bower install angular-parse-ext@X.Y.Z
"//code.angularjs.org/X.Y.Z/angular-parse-ext.js"
where X.Y.Z is the AngularJS version you are running.
Then load the module in your application by adding it as a dependent module:
angular.module('app', ['ngParseExt']);
With that you're ready to get started!
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.