10 lines
157 B
TypeScript
10 lines
157 B
TypeScript
export class ColumnDecimalTransformer {
|
|
to(data: number): number {
|
|
return data;
|
|
}
|
|
|
|
from(data: string): number {
|
|
return parseFloat(data);
|
|
}
|
|
}
|