({
id,
subset,
axes,
style,
version,
}: BucketPathVariable)
| 36 | }: BucketPath) => `${id}@${version}/${subset}-${weight}-${style}.${extension}`; |
| 37 | |
| 38 | export const bucketPathVariable = ({ |
| 39 | id, |
| 40 | subset, |
| 41 | axes, |
| 42 | style, |
| 43 | version, |
| 44 | }: BucketPathVariable) => |
| 45 | `${id}@${version}/variable/${subset}-${axes}-${style}.woff2`; |
| 46 | |
| 47 | const handleBucketError = (resp: Response, msg: string) => { |
| 48 | if (resp.status === 401) { |
no outgoing calls
no test coverage detected