UNPKG

rwt-orthographic-earth

Version:

An orthographic projection of Earth, a standards-based DOM Component

17 lines (16 loc) 508 B
/* Copyright (c) 2022 Read Write Tools. Legal use subject to the JavaScript Orthographic Earth Software License Agreement. */ import vssStyle from './vss-style.class.js'; export default class vssSelectorCollection { constructor() { this.vssSelectors = {}; } selectorExists(s) { return null != s && s in this.vssSelectors; } createNewSelector(s) { return this.vssSelectors[s] = new vssStyle; } getSelector(s) { return this.vssSelectors[s]; } }