Commit d0b5e48 1 parent 1c61438 commit d0b5e48 Copy full SHA for d0b5e48
File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ const notObj = require('./src/not-obj')
118
118
const notPair = require ( './src/not-pair' )
119
119
const notRegExp = require ( './src/not-reg-exp' )
120
120
const notStr = require ( './src/not-str' )
121
+ const notUpper = require ( './src/not-upper' )
121
122
const nullary = require ( './src/nullary' )
122
123
const num = require ( './src/num' )
123
124
const odd = require ( './src/odd' )
@@ -316,6 +317,7 @@ module.exports = {
316
317
notPair,
317
318
notRegExp,
318
319
notStr,
320
+ notUpper,
319
321
nullary,
320
322
num,
321
323
odd,
Original file line number Diff line number Diff line change
1
+ 'use strict'
2
+ const curry = require ( './curry' )
3
+ const isUpper = require ( './is-upper' )
4
+ const not = require ( './not' )
5
+
6
+ function notUpper ( x ) {
7
+ return not ( isUpper ( x ) )
8
+ }
9
+
10
+ module . exports = curry ( notUpper )
You can’t perform that action at this time.
0 commit comments