⚠️ Este script está descontinuado y ha sido reemplazado por la aplicación 🖨 imprimepase.vercel.app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node_modules/ | |
| dist/ | |
| .DS_Store | |
| *.log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| env: { | |
| browser: true, | |
| es6: true, | |
| }, | |
| extends: ["airbnb-base", "plugin:prettier/recommended"], | |
| globals: { | |
| Atomics: "readonly", | |
| SharedArrayBuffer: "readonly", | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !.eslintrc.js |
Una recopilación de ñoñerías chicas que he hecho como usuario de Fintual.
Importante: no formo parte del equipo de fintual, todo lo que está acá no es responsabilidad de ellos. Todo lo que está acá puede fallar si el sitio o API de fintual cambia.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !.eslintrc.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !.eslintrc.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| import { Animated, Easing, StatusBar, MaskedViewIOS, View } from 'react-native'; | |
| class AnimatedGate extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.beginAnimation = this.beginAnimation.bind(this); | |
| this.state = { | |
| animation: new Animated.Value(0), | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import PropTypes from 'prop-types'; | |
| import debounce from 'lodash/debounce'; | |
| const withDebounce = (Touchable) => { | |
| class DebouncedComponent extends React.PureComponent { | |
| constructor(props) { | |
| super(props); | |
| const { onPress } = props; | |
| this.onPress = debounce(() => onPress && onPress(), 300, { |
NewerOlder