๐Ÿ“œMap

map.js
import { Map } from 'the-simplifier'

let func = () => {
    let testMap = new Map()
    
    testMap.set('testKey', 'testValue')
}

func() // Expected: Promise<void>

Last updated

Was this helpful?