promise-polyfill-lite.html 191 Bytes
<link rel="import" href="../polymer/polymer.html">
<script src='./Promise.js'></script>
<script>
if (!window.Promise) {
  window.Promise = MakePromise(Polymer.Base.async);
}
</script>