UNPKG
oboe.js-demo
Version:
latest (0.0.0-236)
0.0.0-236
0.0.0-234
A website for Oboe.js
github.com/jimhigson/oboe.js-website
jimhigson/oboe.js-website
oboe.js-demo
/
statics
/
js
/
demo
/
oop.js
8 lines
•
209 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
function
extend
(
Sup, Sub
) {
Sub
.
prototype
=
Object
.
create
(
Sup
.
prototype
);
Sub
.
prototype
.
constructor
=
Sub
;
return
Sub
; }
function
abstract
(
){
throw
new
Error
(
'don\'t call me, I\'m abstract'
); }