mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
import axios from 'axios'
|
|
|
|
;(async () => {
|
|
|
|
const { data } = await axios.get(`https://master--doesitarm.netlify.app/apple-silicon-app-test`)
|
|
|
|
console.log( data.slice(0, 100) )
|
|
|
|
process.exit()
|
|
})()
|