shift73k/assets_old/node_modules/@popperjs/core/lib/utils/format.js.flow

6 lines
144 B
Text
Raw Normal View History

// @flow
export default function format(str: string, ...args: Array<string>) {
return [...args].reduce((p, c) => p.replace(/%s/, c), str);
}