UNPKG
check-ethereum-scanner
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Safety checks for new Ethereum tokens
check-ethereum-scanner
/
Ethereum-Renounced-Contract-Scanner
/
node_modules
/
class-is
/
test
/
fixtures
/
es6
/
Plant.js
20 lines
(15 loc)
•
310 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict'
;
const
withIs =
require
(
'../../..'
);
class
Plant
{
constructor
(
type
) {
this
.
type
=
type
; }
getType
(
) {
return
this
.
type
; } }
module
.
exports
=
withIs
(
Plant
, {
className
:
'Plant'
,
symbolName
:
'@org/package/Plant'
, });
module
.
exports
.
WrappedClass
=
Plant
;