UNPKG

@mopinion/survey

Version:

Collect customer feedback with the Mopinion survey library

15 lines (14 loc) 357 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = usePrevious; var _hooks = require("preact/hooks"); function usePrevious(value) { var ref = (0, _hooks.useRef)(); (0, _hooks.useEffect)(function () { ref.current = value; }, [value]); return ref.current; } //# sourceMappingURL=usePrevious.js.map