UNPKG

angular-mask

Version:
17 lines (13 loc) 312 B
var TestUtil = { compile: function(html, initialScope) { var container; inject(function($compile, $rootScope) { if (angular.isDefined(initialScope)) { angular.extend($rootScope, initialScope); } container = $compile(html)($rootScope); $rootScope.$apply(); }); return container; } };