Common Tools for development in Mac
- version
xcode-select --version
// xcode-select version 2392.
- Install
/** | |
* Example `FizzBuzz` with JavaScript (Pattern-Matching Like????????????) λ_(ツ)_/¯ | |
* I Love this tweet | |
* @see https://twitter.com/cajuinaoverflow/status/1395022027204005889 | |
* JavaScript will make You Crazy (Trust Me!) | |
*/ | |
const FizzBuzz = n => ({ | |
true: n, | |
[ n % 5 === 0]: "Buzz", | |
[ n % 3 === 0]: "Fizz", |
/* | |
* Author : Muhammad Fauzan | fauzan121002 | |
* Web3.js v1.3.6 | |
* | |
* No License Used, Free to modify, commercial use and distribute. | |
*/ | |
import { defineComponent, useAsync, ref } from '@nuxtjs/composition-api' | |
export const useGetUserBalance = async () => { |