aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/utils.coffee6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/utils.coffee b/lib/utils.coffee
index c7f0a085..56f00dd2 100644
--- a/lib/utils.coffee
+++ b/lib/utils.coffee
@@ -193,12 +193,6 @@ Utils =
# locale-sensitive uppercase detection
hasUpperCase: (s) -> s.toLowerCase() != s
- # Return a copy of object, but with some of its properties omitted.
- copyObjectOmittingProperties: (obj, properties...) ->
- obj = extend {}, obj
- delete obj[property] for property in properties
- obj
-
# Does string match any of these regexps?
matchesAnyRegexp: (regexps, string) ->
for re in regexps