blob: d5aff1857fc4539166986a46793b04edb1099e89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/**
* @author Titus Wormer
* @copyright 2016 Titus Wormer
* @license MIT
* @module state-toggle
* @fileoverview Enter/exit a state.
*/
'use strict';
/* eslint-env commonjs */
/* Expose. */
module.exports = factory;
/**
* Construct a state `toggler`: a function which inverses
* `property` in context based on its current value.
* The by `toggler` returned function restores that value.
*
* @param {string} key - Property to toggle.
* @param {boolean} state - Default state.
* @param {Object?} [ctx] - Context object.
* @return {Function} - Enter.
*/
function factory(key, state, ctx) {
/**
* Enter a state.
*
* @return {Function} - Exit state.
*/
return function () {
var context = ctx || this;
var current = context[key];
context[key] = !state;
/**
* Cancel state to its value before entering.
*/
return function () {
context[key] = current;
};
};
}
|