Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 173 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 173 Bytes

Async Kit

Smart way to growth your ASYNC/AWAIT JavaScript project

const func1 = async () => {
  let value = await AsyncValue(10);  
  
  console.log(value)
};