Skip to content

mikeal/mikeal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 

Repository files navigation

/*   Pratītyasamutpāda   */
/* Dependent Origination */

const a = (_this, that) => {
  if (_this) that()
}
const b = (that) => {
  const _this = false
  // vm knows this will never be called, this code can be dropped
  // and only ever appears in this textual form
  if (_this) that()
}
const c = (_this) => {
  const that = false
  // vm knows this will never be called, this code can be dropped
  // and only ever appears in this textual form
  if (that && _this) return _this
}

Releases

No releases published

Packages

No packages published