source: node_modules/property-information/lib/util/info.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 471 bytes
Line 
1'use strict'
2
3module.exports = Info
4
5var proto = Info.prototype
6
7proto.space = null
8proto.attribute = null
9proto.property = null
10proto.boolean = false
11proto.booleanish = false
12proto.overloadedBoolean = false
13proto.number = false
14proto.commaSeparated = false
15proto.spaceSeparated = false
16proto.commaOrSpaceSeparated = false
17proto.mustUseProperty = false
18proto.defined = false
19
20function Info(property, attribute) {
21 this.property = property
22 this.attribute = attribute
23}
Note: See TracBrowser for help on using the repository browser.