mirror of
https://github.com/marcogll/passkit-generator.git
synced 2026-03-15 19:25:23 +00:00
Fixed tests, added tests, fixed ducked up things
This commit is contained in:
@@ -51,7 +51,7 @@ export default class Bundle {
|
||||
mimeType: `${Mime.type}/${Mime.subtype}`,
|
||||
): [Bundle, Function] {
|
||||
const bundle = new Bundle(mimeType);
|
||||
return [bundle, bundle[freezeSymbol]];
|
||||
return [bundle, () => bundle[freezeSymbol]()];
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -69,8 +69,8 @@ export default class Bundle {
|
||||
}
|
||||
|
||||
/**
|
||||
* Tells if this bundle still allows files to be added
|
||||
* @returns
|
||||
* Tells if this bundle still allows files to be added.
|
||||
* @returns false if files are allowed, true otherwise
|
||||
*/
|
||||
|
||||
public get isFrozen() {
|
||||
|
||||
Reference in New Issue
Block a user