Skip to content

Instantly share code, notes, and snippets.

@roshanca
Created March 22, 2021 08:30
Show Gist options
  • Save roshanca/d3f46a61da93b6c3f771b920b525834c to your computer and use it in GitHub Desktop.
Save roshanca/d3f46a61da93b6c3f771b920b525834c to your computer and use it in GitHub Desktop.
首字母大写转换
/**
* 首字母大写转换
* @param {string} word
*/
export const firstUpperCase = ([first, ...rest]) =>
first.toUpperCase() + rest.join('');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment