themisir / themisir.com

Personal website powered by gohugo.io
https://themisir.com
3 stars 0 forks source link

test #3

Open themisir opened 1 year ago

themisir commented 1 year ago

@robobun

console.log(('b' + 'a' + + 'a' + 'a').toLowerCase( ))
robobun commented 1 year ago

@themisir here you go!

banana
Code ```tsx console.log(('b' + 'a' + + 'a' + 'a').toLowerCase( )) ```

Ran using the latest build of Bun, an all-in-one JavaScript runtime.

themisir commented 1 year ago

impressive, nice job!

themisir commented 1 year ago

@robobun

//sorry i have to do this

console.log(await fetch('https://ipconfig.io/json').then(r => r.json()));
robobun commented 1 year ago

@themisir here you go!

{ ip: "2604:1380:45f1:3801:0:efe7:54f6:1", ip_decimal: 50531828555894295000000000000000000000, country: "United States", country_iso: "US", country_eu: false, region_name: "Virginia", region_code: "VA", metro_code: 511, zip_code: "20149", city: "Ashburn", latitude: 39.0469, longitude: -77.4903, time_zone: "America/New_York", asn: "AS54825", asn_org: "PACKET", user_agent: { product: "Bun", version: "0.2.3", raw_value: "Bun/0.2.3" } }
Code ```tsx //sorry i have to do this console.log(await fetch('https://ipconfig.io/json').then(r => r.json())); ```

Ran using the latest build of Bun, an all-in-one JavaScript runtime.