initial commit

This commit is contained in:
2026-03-22 03:21:45 +02:00
commit 897fea9f4e
15431 changed files with 2548840 additions and 0 deletions

37
node_modules/region-align/Region.proto.js generated vendored Normal file
View File

@@ -0,0 +1,37 @@
'use strict';
var Region = require('region')
/**
*
* Aligns this region to the given region
* @param {Region} region
* @param {String} alignPositions For available positions, see {@link #getPoint}
*
* eg: 'tr-bl'
*
* @return this
*/
Region.prototype.alignToRegion = function(region, alignPositions){
Region.align(this, region, alignPositions)
return this
}
/**
* Aligns this region to the given point, in the anchor position
* @param {Object} point eg: {x: 20, y: 600}
* @param {Number} point.x
* @param {Number} point.y
*
* @param {String} anchor For available positions, see {@link #getPoint}
*
* eg: 'bl'
*
* @return this
*/
Region.prototype.alignToPoint = function(point, anchor){
Region.alignToPoint(this, point, anchor)
return this
}