Files
dealplustech/node_modules/unist-util-remove-position/lib/index.js
Kunthawat Greethong 443c3377e2 refactor: Move Astro to root, use PORT env (default 80), allow all hosts
- Move Astro files from dealplustech-astro/ to project root
- Update Dockerfile: PORT environment variable (default 80)
- Add vite.config.ts with allowedHosts: true
- Matches nixpacks behavior for Easypanel deployment
- No hardcoded ports or domains
2026-03-03 11:40:50 +07:00

43 lines
854 B
JavaScript

/**
* @typedef {import('unist').Node} Node
*/
/**
* @typedef Options
* Configuration.
* @property {boolean | null | undefined} [force=false]
* Whether to use `delete` to remove `position` fields.
*
* The default is to set them to `undefined`.
*/
import {visit} from 'unist-util-visit'
/**
* Remove the `position` field from a tree.
*
* @param {Node} tree
* Tree to clean.
* @param {Options | null | undefined} [options={force: false}]
* Configuration (default: `{force: false}`).
* @returns {undefined}
* Nothing.
*/
export function removePosition(tree, options) {
const config = options || {}
const force = config.force || false
visit(tree, remove)
/**
* @param {Node} node
*/
function remove(node) {
if (force) {
delete node.position
} else {
node.position = undefined
}
}
}