Skip to content

Commit a84bd16

Browse files
committed
find and findOne accept Boolean values.
1 parent 23cb90e commit a84bd16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

files.coffee

+2-2
Original file line numberDiff line numberDiff line change
@@ -1440,7 +1440,7 @@ class FilesCollection
14401440
###
14411441
findOne: (selector, options) ->
14421442
console.info "[FilesCollection] [findOne(#{JSON.stringify(selector)}, #{JSON.stringify(options)})]" if @debug
1443-
check selector, Match.Optional Match.OneOf Object, String, null
1443+
check selector, Match.Optional Match.OneOf Object, String, Boolean, null
14441444
check options, Match.Optional Object
14451445

14461446
selector = {} unless arguments.length
@@ -1458,7 +1458,7 @@ class FilesCollection
14581458
###
14591459
find: (selector, options) ->
14601460
console.info "[FilesCollection] [find(#{JSON.stringify(selector)}, #{JSON.stringify(options)})]" if @debug
1461-
check selector, Match.Optional Match.OneOf Object, String, null
1461+
check selector, Match.Optional Match.OneOf Object, String, Boolean, null
14621462
check options, Match.Optional Object
14631463

14641464
selector = {} unless arguments.length

0 commit comments

Comments
 (0)