UNPKG
alcaeus-model
Version:
esm (1.0.0-esm.0)
latest (1.0.1)
1.0.1
1.0.0
1.0.0-esm.1
1.0.0-esm.0
rdfine models for Alcaeus, Hydra client
alcaeus.hydra.how
wikibus/alcaeus
alcaeus-model
/
Nothing.js
14 lines
(13 loc)
•
342 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{ owl }
from
'@tpluscode/rdf-ns-builders'
;
export
function
NothingMixin
(
base
) {
class
Nothing
extends
base
{
get
title
() {
return
'Nothing'
; }
get
description
() {
return
'Nothing'
; } }
return
Nothing
; }
NothingMixin
.
shouldApply
=
(
res
) =>
owl.
Nothing
.
equals
(res.
id
);