react-native-navigation的迁移库

UniqueIdProvider.js 123B

12345678
  1. import _ from 'lodash';
  2. export default class UniqueIdProvider {
  3. generate(prefix) {
  4. return _.uniqueId(prefix);
  5. }
  6. }