CARVIEW |
Select Language
HTTP/2 301
location: https://raw.githubusercontent.com/zappan/angular-speakingurl/master/src/angular-speakingurl.js
accept-ranges: bytes
age: 0
date: Sun, 20 Jul 2025 10:09:55 GMT
via: 1.1 varnish
x-served-by: cache-bom4745-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753006195.711485,VS0,VE979
vary: Accept-Encoding
x-fastly-request-id: 3d4978eb2ebee52f49c1719038373baa475c7c55
content-length: 0
HTTP/2 200
cache-control: max-age=300
content-security-policy: default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type: text/plain; charset=utf-8
etag: W/"5cd403a70c0ce4691b09385f361fd7a227e8e78bb17e1400c31436ec173ba19c"
strict-transport-security: max-age=31536000
x-content-type-options: nosniff
x-frame-options: deny
x-xss-protection: 1; mode=block
x-github-request-id: 473D:0913:199102:3EF663:687CC073
content-encoding: gzip
accept-ranges: bytes
date: Sun, 20 Jul 2025 10:09:56 GMT
via: 1.1 varnish
x-served-by: cache-bom4730-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1753006196.742279,VS0,VE351
vary: Authorization,Accept-Encoding
access-control-allow-origin: *
cross-origin-resource-policy: cross-origin
x-fastly-request-id: 6e9d68be61eef33dd7b65849251256762cd04c8b
expires: Sun, 20 Jul 2025 10:14:56 GMT
source-age: 0
content-length: 268
(function (window, angular, undefined) {
var module = angular.module('angular-speakingurl', []);
module.filter('getSlug', function ($speakingurl) {
return function (value, format) {
return (typeof value === 'undefined' || null === value) ? '' : $speakingurl.getSlug(String(value));
};
});
module.provider('$speakingurl', function () {
this.$get = ['$window', function ($window) {
return {
getSlug: $window.getSlug
};
}];
});
})(this, this.angular, void 0);