mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 18:48:14 +08:00
12 lines
175 B
JavaScript
12 lines
175 B
JavaScript
|
"use strict";
|
||
|
|
||
|
exports.__esModule = true;
|
||
|
exports.default = hardSet;
|
||
|
|
||
|
/*
|
||
|
hardSet:
|
||
|
- hard set incoming state
|
||
|
*/
|
||
|
function hardSet(inboundState) {
|
||
|
return inboundState;
|
||
|
}
|