summaryrefslogtreecommitdiff
path: root/test_export.go
diff options
context:
space:
mode:
Diffstat (limited to 'test_export.go')
-rw-r--r--test_export.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/test_export.go b/test_export.go
deleted file mode 100644
index 76d29d2..0000000
--- a/test_export.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
-//
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-package lowmemjson
-
-import (
- "io"
-
- "git.lukeshu.com/go/lowmemjson/internal"
-)
-
-func init() {
- internal.EncodeStringFromString = func(w io.Writer, s string) { encodeStringFromString(w, nil, s) }
- internal.EncodeStringFromBytes = func(w io.Writer, s []byte) { encodeStringFromBytes(w, nil, s) }
-}
-
-var parseTag = internal.ParseTag