Initial commit, 90% there
This commit is contained in:
16
node_modules/table-layout/lib/padding.js
generated
vendored
Normal file
16
node_modules/table-layout/lib/padding.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
'use strict'
|
||||
|
||||
class Padding {
|
||||
constructor (padding) {
|
||||
this.left = padding.left
|
||||
this.right = padding.right
|
||||
}
|
||||
length () {
|
||||
return this.left.length + this.right.length
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@module padding
|
||||
*/
|
||||
module.exports = Padding
|
||||
Reference in New Issue
Block a user