UNPKG

react-native-flip

Version:
10 lines (9 loc) 149 B
/** * @private * get a unique id * @returns {number} uniqueId */ let _uniqueId = 1; export default function uniqueId() { return _uniqueId++; }