can-observe
Version:
Like can.Map, but without the .attr method.
12 lines (10 loc) • 317 B
JavaScript
var canSymbol = require("can-symbol");
module.exports = {
metaSymbol: canSymbol.for("can.meta"),
// not an actual symbol. This is so it can be enumerable
// by default. We could create a KeyTree with a type where symbols are
// enumerable.
patchesSymbol: "can.patches",
keysSymbol: "can.keys"
};
;