main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
326 bytes
|
Line | |
---|
1 | var add =
|
---|
2 | /*#__PURE__*/
|
---|
3 | require("./add.js");
|
---|
4 | /**
|
---|
5 | * Increments its argument.
|
---|
6 | *
|
---|
7 | * @func
|
---|
8 | * @memberOf R
|
---|
9 | * @since v0.9.0
|
---|
10 | * @category Math
|
---|
11 | * @sig Number -> Number
|
---|
12 | * @param {Number} n
|
---|
13 | * @return {Number} n + 1
|
---|
14 | * @see R.dec
|
---|
15 | * @example
|
---|
16 | *
|
---|
17 | * R.inc(42); //=> 43
|
---|
18 | */
|
---|
19 |
|
---|
20 |
|
---|
21 | var inc =
|
---|
22 | /*#__PURE__*/
|
---|
23 | add(1);
|
---|
24 | module.exports = inc; |
---|
Note:
See
TracBrowser
for help on using the repository browser.