Test name | Executions per second |
---|---|
ng | 40738.1 Ops/sec |
native | 38927.4 Ops/sec |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js"></script>
var ment = angular.module('ent', []);
ment.controller('EntCtrl', function($compile,$scope) {
window.compileE = compileE;
function compileE(code) {
var scope = $scope.$new();
$compile(code)(scope);
scope.$destroy();
}
});
eMent = angular.element('<div><div ng-controller="EntCtrl"></div></div>');
angular.element(document.body).append(eMent);
angular.bootstrap(eMent[0], ['ent']);
window.compileE('<div ng-click="click()"></div>');
window.compileE('<div onclick="click()"></div>');