Skip to content

Instantly share code, notes, and snippets.

@uniblackfire
uniblackfire / -internal.js
Created August 18, 2018 12:07 — forked from eventualbuddha/-internal.js
es6-promise as a gist
import {
objectOrFunction,
isFunction
} from './utils';
import asap from './asap';
function noop() {}
var PENDING = void 0;
@uniblackfire
uniblackfire / index.html
Created April 4, 2018 03:47 — forked from jerrybendy/ index.html
一个使用 HTML5 录音的例子(网上看到的,收藏下)
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
<div>
<audio controls autoplay></audio>
<input onclick="startRecording()" type="button" value="录音" />