2022_01_14

kinghong97·2022년 1월 14일
0
post-custom-banner

블롭 다운

const blob = new Blob([블롭이 될 거], {type: 'text/plain'})
const url = window.URL.createObjectURL(blob)
const a = document.createElement("a")
a.href = url
a.download = file이름.file형식
a.click()
a.remove()
window.URL.revokeObjectURL(url);

블롭 파일로

const file = new File([blob], 'voice.wav', blob)

첫 커밋 취소하기

git update-ref -d HEAD
git rm --cached -r .

0개의 댓글