Skip to content

Commit

Permalink
Remove objectIncludes
Browse files Browse the repository at this point in the history
  • Loading branch information
chee committed Feb 24, 2020
1 parent ed58816 commit d51082f
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions op1.control.ts
Expand Up @@ -5,16 +5,6 @@ host.loadAPI(10)

host.load("./polyfill.io.js")

function objectIncludes (target: object, targetValue: string | number) {
for (let key in target) {
let value = targetValue[key]
if (value != null) {
return true
}
}
return false
}

type ValueOf<T> = T[keyof T]

enum Sequence {
Expand Down

0 comments on commit d51082f

Please sign in to comment.