Skip to content

Commit 58baa54

Browse files
committed
chore@small
1 parent 0404ea1 commit 58baa54

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1965,12 +1965,12 @@ delay(ms: number): Promise<'RAMBDA_DELAY'>;
19651965
<summary><strong>R.delay</strong> source</summary>
19661966

19671967
```javascript
1968-
export const DELAY = 'RAMBDA_DELAY'
1968+
export const RAMBDA_DELAY = 'RAMBDA_DELAY'
19691969

19701970
export function delay(ms) {
19711971
return new Promise(resolve => {
19721972
setTimeout(() => {
1973-
resolve(DELAY)
1973+
resolve(RAMBDA_DELAY)
19741974
}, ms)
19751975
})
19761976
}

dist/rambda.cjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,12 +249,12 @@ function defaultTo(defaultArgument) {
249249
return input => isFalsy(input) ? defaultArgument : input
250250
}
251251

252-
const DELAY = 'RAMBDA_DELAY';
252+
const RAMBDA_DELAY = 'RAMBDA_DELAY';
253253

254254
function delay(ms) {
255255
return new Promise(resolve => {
256256
setTimeout(() => {
257-
resolve(DELAY);
257+
resolve(RAMBDA_DELAY);
258258
}, ms);
259259
})
260260
}
@@ -2003,7 +2003,7 @@ function zipWith(fn, x) {
20032003
)
20042004
}
20052005

2006-
exports.DELAY = DELAY;
2006+
exports.RAMBDA_DELAY = RAMBDA_DELAY;
20072007
exports._arity = _arity;
20082008
exports._includes = _includes;
20092009
exports._indexOf = _indexOf;

dist/rambda.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,12 +247,12 @@ function defaultTo(defaultArgument) {
247247
return input => isFalsy(input) ? defaultArgument : input
248248
}
249249

250-
const DELAY = 'RAMBDA_DELAY';
250+
const RAMBDA_DELAY = 'RAMBDA_DELAY';
251251

252252
function delay(ms) {
253253
return new Promise(resolve => {
254254
setTimeout(() => {
255-
resolve(DELAY);
255+
resolve(RAMBDA_DELAY);
256256
}, ms);
257257
})
258258
}
@@ -2001,4 +2001,4 @@ function zipWith(fn, x) {
20012001
)
20022002
}
20032003

2004-
export { DELAY, _arity, _includes, _indexOf, _lastIndexOf, addProp, addPropToObjects, all, allPass, any, anyPass, append, ascend, assertType, checkObjectWithSpec, compact, complement, concat, convertToType, count, countBy, createCompareFunction, createObjectFromKeys, defaultTo, delay, descend, difference, drop, dropLast, dropLastWhile, dropWhile, duplicateBy, eqBy, eqProps, equals, equalsFn, evolve, excludes, exists, filter, filterAsync, filterMap, filterObject, find, findIndex, findLast, findLastIndex, findNth, flatMap, flatten, flattenObject, flattenObjectHelper, groupBy, groupByFallback, head, includes, indexBy, indexOf, init, interpolate, intersection, intersectionWith, intersperse, join, last, lastIndexOf, map, mapAsync, mapChain, mapFn, mapKeys, mapObject, mapObjectAsync, mapParallelAsync, mapPropObject, match, maxBy, merge, mergeTypes, middle, minBy, modifyItemAtIndex, modifyPath, modifyProp, none, objOf, objectIncludes, omit, partition, partitionObject, path, pathSatisfies, permutations, pick, pipe, pipeAsync, pluck, prepend, prop, propEq, propOr, propSatisfies, random, range, rangeDescending, reduce, reject, rejectObject, replace, replaceAll, shuffle, sort, sortBy, sortByDescending, sortByFn, sortByPath, sortByPathDescending, sortObject, sortWith, split, splitEvery, sum, switcher, symmetricDifference, tail, take, takeLast, takeLastWhile, takeWhile, tap, test, transformFlatObject, tryCatch, type, union, unionWith, uniq, uniqBy, uniqWith, unless, unwind, update, when, zip, zipWith };
2004+
export { RAMBDA_DELAY, _arity, _includes, _indexOf, _lastIndexOf, addProp, addPropToObjects, all, allPass, any, anyPass, append, ascend, assertType, checkObjectWithSpec, compact, complement, concat, convertToType, count, countBy, createCompareFunction, createObjectFromKeys, defaultTo, delay, descend, difference, drop, dropLast, dropLastWhile, dropWhile, duplicateBy, eqBy, eqProps, equals, equalsFn, evolve, excludes, exists, filter, filterAsync, filterMap, filterObject, find, findIndex, findLast, findLastIndex, findNth, flatMap, flatten, flattenObject, flattenObjectHelper, groupBy, groupByFallback, head, includes, indexBy, indexOf, init, interpolate, intersection, intersectionWith, intersperse, join, last, lastIndexOf, map, mapAsync, mapChain, mapFn, mapKeys, mapObject, mapObjectAsync, mapParallelAsync, mapPropObject, match, maxBy, merge, mergeTypes, middle, minBy, modifyItemAtIndex, modifyPath, modifyProp, none, objOf, objectIncludes, omit, partition, partitionObject, path, pathSatisfies, permutations, pick, pipe, pipeAsync, pluck, prepend, prop, propEq, propOr, propSatisfies, random, range, rangeDescending, reduce, reject, rejectObject, replace, replaceAll, shuffle, sort, sortBy, sortByDescending, sortByFn, sortByPath, sortByPathDescending, sortObject, sortWith, split, splitEvery, sum, switcher, symmetricDifference, tail, take, takeLast, takeLastWhile, takeWhile, tap, test, transformFlatObject, tryCatch, type, union, unionWith, uniq, uniqBy, uniqWith, unless, unwind, update, when, zip, zipWith };

dist/rambda.umd.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,12 +253,12 @@
253253
return input => isFalsy(input) ? defaultArgument : input
254254
}
255255

256-
const DELAY = 'RAMBDA_DELAY';
256+
const RAMBDA_DELAY = 'RAMBDA_DELAY';
257257

258258
function delay(ms) {
259259
return new Promise(resolve => {
260260
setTimeout(() => {
261-
resolve(DELAY);
261+
resolve(RAMBDA_DELAY);
262262
}, ms);
263263
})
264264
}
@@ -2007,7 +2007,7 @@
20072007
)
20082008
}
20092009

2010-
exports.DELAY = DELAY;
2010+
exports.RAMBDA_DELAY = RAMBDA_DELAY;
20112011
exports._arity = _arity;
20122012
exports._includes = _includes;
20132013
exports._indexOf = _indexOf;

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1965,12 +1965,12 @@ delay(ms: number): Promise<'RAMBDA_DELAY'>;
19651965
<summary><strong>R.delay</strong> source</summary>
19661966

19671967
```javascript
1968-
export const DELAY = 'RAMBDA_DELAY'
1968+
export const RAMBDA_DELAY = 'RAMBDA_DELAY'
19691969

19701970
export function delay(ms) {
19711971
return new Promise(resolve => {
19721972
setTimeout(() => {
1973-
resolve(DELAY)
1973+
resolve(RAMBDA_DELAY)
19741974
}, ms)
19751975
})
19761976
}

source/delay.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
export const DELAY = 'RAMBDA_DELAY'
1+
export const RAMBDA_DELAY = 'RAMBDA_DELAY'
22

33
export function delay(ms) {
44
return new Promise(resolve => {
55
setTimeout(() => {
6-
resolve(DELAY)
6+
resolve(RAMBDA_DELAY)
77
}, ms)
88
})
99
}

src/delay.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
export const DELAY = 'RAMBDA_DELAY'
1+
export const RAMBDA_DELAY = 'RAMBDA_DELAY'
22

33
export function delay(ms) {
44
return new Promise(resolve => {
55
setTimeout(() => {
6-
resolve(DELAY)
6+
resolve(RAMBDA_DELAY)
77
}, ms)
88
})
99
}

0 commit comments

Comments
 (0)