Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

toFunctionName.js 170B

1234
  1. export default function toFunctionName(typeName) {
  2. const _ = typeName.replace(/^TS/, "ts").replace(/^JSX/, "jsx");
  3. return _.slice(0, 1).toLowerCase() + _.slice(1);
  4. }