UNPKG

angular-url-encode

Version:
21 lines (15 loc) 274 B
export function EncodeFilter( $window ) { 'ngInject'; return encode; /** * URL-encode a string * * @param {String} input * @return {String} output */ function encode(input) { return $window.encodeURI(input); } }