UNPKG

react-native-studia

Version:
8 lines (7 loc) 198 B
// @flow 'use strict' export function fillStringWithArguments(value: string, object: Object) { return value.replace(/\{([^}]+)\}/g, function(_, arg: string) { return object[arg] || '?' }) }