Adding an extra test to ensure quote params work even if no spaces

This commit is contained in:
Paul Kinlan
2020-04-14 03:34:07 +01:00
parent 917880e1b7
commit 5ae3330d2e
2 changed files with 13 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ const OPTIONS = {
};
const FLAME_MP4_LENGTH = 100374;
const META_FLAME_MP4_LENGTH = 100408;
const META_FLAME_MP4_LENGTH_NO_SPACE = 100404;
if (typeof module !== 'undefined') {
module.exports = {
@@ -17,5 +18,6 @@ if (typeof module !== 'undefined') {
OPTIONS,
FLAME_MP4_LENGTH,
META_FLAME_MP4_LENGTH,
META_FLAME_MP4_LENGTH_NO_SPACE,
};
}