UNPKG
cie-calculator-flap
Version:
latest (1.0.0)
1.0.0
Easily generate CIE References
cie-calculator-flap
/
lib
/
strategies
/
cie_strategy.js
12 lines
(8 loc)
•
228 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
var
CIEStrategy
=
function
(
) {};
CIEStrategy
.
prototype
= {
execute
:
function
(
) {
throw
new
Error
(
'CIEStrategy#execute needs to be overridden.'
); } };
module
.
exports
.
CIEStrategy
=
CIEStrategy
;