Skip to content

Instantly share code, notes, and snippets.

View tedpan's full-sized avatar
🐢
learning

d+ tedpan

🐢
learning
  • Guangzhou
View GitHub Profile
@tedpan
tedpan / compose.js
Last active July 17, 2022 15:46
little-utils
// 简易洋葱模型
// app.use(next => {
// console.log(1)
// next()
// })
// app.use(next => {
// console.log(2)
// next()
// })
// app.use(next => {
@tedpan
tedpan / timeSliceByGen.js
Last active May 2, 2022 08:20
时间切片
// 时间切片 generator fn实现
// 包装器
function timeSliceWrapper(task){
if(typeof task !== 'function'){
throw new Error('请输入生成器函数!')
}
const gen = task()
const sliceSize = 25
return function next(){
let start = performance.now()