angular-base64
angular-base64 copied to clipboard
Is it possible to inject?
Is it possible to inject $base64? How to user this library with injector?
Yes,
it's clearly explained in README file:
angular
.module('myApp', ['base64'])
.controller('myController', [
'$base64', '$scope',
function($base64, $scope) {
}]);