UNPKG

react-native-timer-picker

Version:

A simple, flexible, performant duration picker for React Native apps 🔥 Great for timers, alarms and duration inputs ⏰🕰️⏳ Includes iOS-style haptic and audio feedback 🍏

8 lines 244 B
export const padNumber = (value, options) => { if (value < 10) { return (options !== null && options !== void 0 && options.padWithZero ? "0" : " ") + value; } else { return String(value); } }; //# sourceMappingURL=padNumber.js.map