summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/mongodb/mongo-tools-common/util/format_date.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/mongodb/mongo-tools-common/util/format_date.go')
-rw-r--r--src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/mongodb/mongo-tools-common/util/format_date.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/mongodb/mongo-tools-common/util/format_date.go b/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/mongodb/mongo-tools-common/util/format_date.go
deleted file mode 100644
index f9b5972da75..00000000000
--- a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/mongodb/mongo-tools-common/util/format_date.go
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (C) MongoDB, Inc. 2014-present.
-//
-// Licensed under the Apache License, Version 2.0 (the "License"); you may
-// not use this file except in compliance with the License. You may obtain
-// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
-
-package util
-
-import (
- "time"
-)
-
-var (
- acceptedDateFormats = []string{
- "2006-01-02T15:04:05.000Z",
- "2006-01-02T15:04:05Z",
- "2006-01-02T15:04Z",
- "2006-01-02T15:04:05.000-0700",
- "2006-01-02T15:04:05-0700",
- "2006-01-02T15:04-0700",
- "2006-01-02T15:04:05Z07:00",
- }
-)
-
-func FormatDate(v string)(interface{}, error) {
- var date interface{}
- var err error
-
- for _, format := range acceptedDateFormats {
- date, err = time.Parse(format, v)
- if err == nil {
- return date, nil
- }
- }
- return date, err
-}