Skip to content

Commit 9b1ce1c

Browse files
committed
lint
1 parent b93ffaf commit 9b1ce1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/serialize/src/deserialize_factory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export function deserializeFactory<Suite extends AlgorithmSuite> (
7878
const type = dataView.getUint8(1)
7979
/* Precondition: version and type must be the required values. */
8080
needs(version === 1 && type === 128,
81-
version === 65 && type === 89 ? 'Malformed Header: This blob may be base64 encoded.' : 'Malformed Header.' )
81+
version === 65 && type === 89 ? 'Malformed Header: This blob may be base64 encoded.' : 'Malformed Header.')
8282

8383
const suiteId = <AlgorithmSuiteIdentifier>dataView.getUint16(2, false) // big endian
8484
/* Precondition: suiteId must match supported algorithm suite */

0 commit comments

Comments
 (0)