Skip to content
This repository was archived by the owner on Dec 12, 2023. It is now read-only.

Commit c5ceda8

Browse files
committed
Add the once function example.
1 parent 2c3cfd5 commit c5ceda8

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

once/Readme.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Once
2+
3+
Write a function that accepts a function as it's only argument and returns a new function that can only ever be executed once.
4+
5+
Once completed, add a second arguments that allows the function to be executed `x` number of times before it stops working.

once/once.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = function (fn, times) {
2+
// Set times to one if nothing is passed through and keep track of the
3+
// latest return value to return when we run out of execution times
4+
var memo;
5+
times = times || 1;
6+
// Return another function that will be executed
7+
return function () {
8+
if (!times) { return memo; }
9+
// Set memo to the result of the function and decrement the number of executions
10+
memo = fn.apply(this, arguments);
11+
times -= 1;
12+
// If there are no more execution times, set the function to `null` so
13+
// it can be garbage collected and return the memo
14+
times || (fn = null);
15+
return memo;
16+
};
17+
};

0 commit comments

Comments
 (0)