UNPKG

react-native-audio-api

Version:

react-native-audio-api provides system for controlling audio in React Native environment compatible with Web Audio API specification

10 lines (9 loc) 218 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.clamp = clamp; function clamp(value, min, max) { return Math.min(Math.max(value, min), max); } //# sourceMappingURL=index.js.map