summaryrefslogtreecommitdiffstats
path: root/vendor/gitlab.com/golang-commonmark/linkify/util.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gitlab.com/golang-commonmark/linkify/util.go')
-rw-r--r--vendor/gitlab.com/golang-commonmark/linkify/util.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/vendor/gitlab.com/golang-commonmark/linkify/util.go b/vendor/gitlab.com/golang-commonmark/linkify/util.go
deleted file mode 100644
index 9f70a57f..00000000
--- a/vendor/gitlab.com/golang-commonmark/linkify/util.go
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright 2015 The Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package linkify
-
-func digit(b byte) bool {
- return b >= '0' && b <= '9'
-}
-
-func hexDigit(b byte) bool {
- return digit(b) || b >= 'a' && b <= 'f' || b >= 'A' && b <= 'F'
-}
-
-func byteToLower(b byte) byte {
- if b >= 'A' && b <= 'Z' {
- return b - 'A' + 'a'
- }
- return b
-}