GoScrobble/web/node_modules/workbox-build/build/lib/get-string-details.js

18 lines
376 B
JavaScript
Raw Normal View History

2022-04-25 02:47:15 +00:00
"use strict";
/*
Copyright 2018 Google LLC
Use of this source code is governed by an MIT-style
license that can be found in the LICENSE file or at
https://opensource.org/licenses/MIT.
*/
const getStringHash = require('./get-string-hash');
module.exports = (url, string) => {
return {
file: url,
hash: getStringHash(string),
size: string.length
};
};