UNPKG

@portabletext/editor

Version:

Portable Text Editor made in React

10 lines (8 loc) 186 B
export function createTestKeyGenerator(prefix?: string) { let index = 0 return function keyGenerator() { const key = `${prefix ?? ''}k${index}` index++ return key } }