Skip to content

Instantly share code, notes, and snippets.

@zerobias
Created November 12, 2018 17:49
Show Gist options
  • Select an option

  • Save zerobias/7c8fae23c670a51552dfbbee0dc7aba6 to your computer and use it in GitHub Desktop.

Select an option

Save zerobias/7c8fae23c670a51552dfbbee0dc7aba6 to your computer and use it in GitHub Desktop.
// @flow
/**
* Simple function for formatting strings.
* Replaces placeholders with values passed as extra arguments
*/
export default function sprintf(format: string, ...args: mixed[]) {
let index = 0;
return format.replace(/%s/g, match => String(args[index++]));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment